forked from asdfjkl/kanjicanvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "tecack",
"version": "0.0.12",
"type": "module",
"description": "",
"keywords": [],
"author": "Ubugeeei <[email protected]>",
"license": "MIT",
"config": {
"commitizen": {
"path": "git-cz"
}
},
"engines": {
"node": ">=16.15.0",
"pnpm": "9",
"npm": "please_use_pnpm_instead"
},
"volta": {
"node": "18.18.2"
},
"scripts": {
"prepare": "husky install",
"deploy": "nr build && sh scripts/deploy.sh",
"build": "tsx build",
"fmt": "prettier",
"lint": "ESLINT_USE_FLAT_CONFIG=true eslint",
"spell-check": "cspell lint \"**\" --no-progress --show-suggestions --show-context --cache",
"open": "pnpm run build && pnpm -F=@examples/viewer run start",
"play": "pnpm run build && pnpm -F=@examples/basic run start",
"play:simple": "pnpm run build && pnpm -F=@examples/simple run start",
"play:client": "pnpm run build && pnpm -F=@examples/client run start",
"play:server": "pnpm run build && pnpm -F=@examples/sever run start",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"lint-staged": {
"*": [
"pnpm run spell-check",
"pnpm run fmt --check",
"pnpm run lint"
]
},
"devDependencies": {
"cspell": "^7.3.8",
"dts-bundle": "^0.7.3",
"esbuild": "^0.19.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tsx": "^3.12.2",
"typescript": "^5.2.2",
"vitepress": "1.0.0-rc.22"
}
}