forked from chibivue-land/chibivue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "chibivue",
"version": "0.0.8",
"type": "module",
"scripts": {
"prepare": "husky install",
"setup": "pnpm i && tsx tools/create-chibivue/main.ts",
"setup:vue": "tsx tools/vue-playground/main.ts",
"setup:dev": "tsx tools/chibivue-playground/main.ts",
"dev": "pnpm -F=@examples/playground run dev",
"dev:app": "pnpm -F=@examples/app run dev",
"dev:vapor": "pnpm -F=@examples/vapor run dev",
"dev:vue": "cd examples/vuejs-core && pnpm i && pnpm run dev",
"build": "tsx build",
"lint": "eslint --cache --ext .js,.ts,.tsx . --ignore-path .gitignore",
"lint:text": "textlint book",
"fmt": "prettier --write --cache .",
"fmt:check": "prettier --check --cache .",
"test": "vitest",
"book:dev": "vitepress dev book/online-book",
"book:build": "vitepress build book/online-book --base /chibivue/",
"book:preview": "vitepress preview book/online-book",
"book:count-chars": "tsx tools/book-size/book/count-chars.ts",
"book:translate": "tsx tools/translator/ja2en/main.ts",
"book:size": "tokei -f packages > tools/book-size/pkg/files.txt"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --parser=typescript --write"
],
"*.md": [
"textlint"
]
},
"author": "Ubugeeei <ubuge1122@gmail.com>",
"devDependencies": {
"@babel/types": "^7.21.2",
"@types/dts-bundle": "^0.0.35",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-vue": "^5.0.2",
"chainsi": "^0.0.1",
"citty": "^0.1.3",
"consola": "^3.2.3",
"dotenv": "^16.3.1",
"dts-bundle": "^0.7.3",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"textlint": "^13.4.1",
"textlint-rule-ja-space-between-half-and-full-width": "^2.3.0",
"tsx": "^4.7.0",
"typescript": "^5.2.2",
"vite-hyper-config": "^0.2.1",
"vite-node": "^1.1.3",
"vitepress": "1.0.0-rc.4",
"vitepress-plugin-mermaid": "^2.0.16",
"vitest": "^0.29.2"
},
"volta": {
"node": "20.10.0"
},
"dependencies": {
"@babel/parser": "^7.21.2",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.0",
"vite": "^5.1.0"
}
}