-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.04 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.04 KB
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
87
88
89
90
{
"name": "chibivue",
"version": "1.0.0",
"type": "module",
"author": "ubugeeei",
"license": "MIT",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.28.0",
"scripts": {
"dev": "vitepress dev book/online-book",
"build": "vitepress build book/online-book",
"preview": "vitepress preview book/online-book",
"lint": "oxlint -c .oxlintrc.json .",
"lint:fix": "oxlint -c .oxlintrc.json --fix .",
"lint:text": "textlint book",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"check": "tsgo --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"play": "pnpm --filter @chibivue/book-playground run generate && pnpm --filter @chibivue/book-playground run dev",
"//": "",
"setup": "pnpm i && pnpm setup:dev",
"setup:dev": "node --experimental-strip-types tools/chibivue-playground/main.ts",
"setup:vue": "node --experimental-strip-types tools/vue-playground/main.ts",
"setup:book": "node --experimental-strip-types tools/create-chibivue/main.ts",
"count-chars": "node --experimental-strip-types tools/book-size/book/count-chars.ts",
"translate": "node --experimental-strip-types tools/translator/ja2en/main.ts",
"impl:dev": "pnpm -F=@examples/playground run dev",
"impl:dev:app": "pnpm -F=@examples/app run dev",
"impl:dev:vapor": "pnpm -F=@examples/vapor run dev",
"impl:dev:vue": "cd examples/vuejs-core && pnpm i && pnpm run dev",
"impl:build": "rolldown -c",
"impl:clean": "rimraf impl/*/dist impl/@extensions/*/dist",
"impl:check": "pnpm lint && pnpm fmt:check && pnpm check && pnpm impl:build && pnpm test",
"impl:size": "tokei -f impl > tools/book-size/pkg/files.txt"
},
"devDependencies": {
"@babel/types": "^7.28.6",
"@iconify-json/mdi": "^1.2.3",
"@types/node": "^24.10.9",
"@typescript/native-preview": "^7.0.0-dev.20260117.1",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"chainsi": "^0.0.1",
"citty": "^0.1.6",
"consola": "^3.4.2",
"dotenv": "^16.6.1",
"fs-extra": "^11.3.3",
"jsdom": "^26.1.0",
"oxc-minify": "^0.109.0",
"oxfmt": "^0.16.0",
"oxlint": "^1.39.0",
"playwright": "^1.52.0",
"rimraf": "^6.1.2",
"rolldown": "^1.0.0-beta.60",
"rolldown-plugin-dts": "^0.6.0",
"textlint": "^14.8.4",
"textlint-rule-ja-space-between-half-and-full-width": "^2.4.2",
"textlint-rule-prh": "^6.1.0",
"typescript": "^5.9.3",
"unplugin-icons": "^23.0.1",
"vite-hyper-config": "^0.8.1",
"vite-node": "^5.3.0",
"vitepress": "2.0.0-alpha.15",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.1.0",
"vue": "^3.5.26"
},
"dependencies": {
"@babel/parser": "^7.28.6",
"@monaco-editor/loader": "^1.7.0",
"@webcontainer/api": "^1.6.1",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.21",
"monaco-editor": "^0.55.1",
"vite": "^8.0.0"
},
"pnpm": {
"overrides": {
"vitepress>vite": "^8.0.0"
},
"onlyBuiltDependencies": [
"esbuild"
]
}
}