-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
74 lines (74 loc) · 2.44 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
{
"name": "chibivue",
"version": "0.0.18",
"type": "module",
"author": "ubugeeei",
"packageManager": "[email protected]",
"scripts": {
"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",
"build-dts": "tsc -p tsconfig.build.json --noCheck && rollup -c rollup.dts.config.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"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",
"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"
},
"devDependencies": {
"@babel/types": "^7.21.2",
"@types/dts-bundle": "^0.0.35",
"@types/fs-extra": "^11.0.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-vue": "^5.0.2",
"@vitest/eslint-plugin": "^1.1.14",
"chainsi": "^0.0.1",
"citty": "^0.1.3",
"consola": "^3.2.3",
"dotenv": "^16.3.1",
"esbuild": "^0.24.0",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-x": "^4.5.0",
"fs-extra": "^11.1.1",
"jsdom": "^25.0.0",
"prettier": "4.0.0-alpha.10",
"rimraf": "^6.0.0",
"rollup": "^4.28.0",
"rollup-plugin-dts": "^6.1.1",
"textlint": "^14.0.0",
"textlint-rule-ja-space-between-half-and-full-width": "^2.3.0",
"textlint-rule-prh": "^6.0.0",
"tsx": "^4.7.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite-hyper-config": "^0.4.0",
"vite-node": "^2.0.0",
"vitepress": "^1.0.1",
"vitepress-plugin-mermaid": "^2.0.16",
"vitest": "^2.1.6"
},
"dependencies": {
"@babel/parser": "^7.21.2",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.0",
"vite": "^6.0.0"
},
"resolutions": {
"cytoscape": "3.28.1"
}
}