-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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
{
"name": "@twotwoba/vv-cli",
"version": "2.9.0",
"description": "Easily create Vite + React19/Vue3 web/h5/mini-program/chrome-extension projects.",
"keywords": [
"TanStack",
"chrome extension",
"cli",
"react",
"tailwindcss",
"uniapp",
"unocss",
"vite8",
"vue"
],
"license": "MIT",
"author": "eric.yuan",
"repository": {
"url": "https://github.com/twotwoba/vv-cli"
},
"bin": {
"vv": "./bin/index.js"
},
"files": [
"bin",
"template-react",
"template-vue",
"template-vue-mobile",
"template-extension",
"template-uniapp",
"!**/node_modules/**"
],
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.3.7",
"ora": "^8.1.1"
},
"devDependencies": {
"@fission-ai/openspec": "^1.2.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
}
}