-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 985 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 985 Bytes
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
{
"name": "create-vue-mini",
"version": "1.4.5",
"type": "module",
"packageManager": "pnpm@10.33.0",
"description": "Vue Mini 脚手架",
"bin": {
"create-vue-mini": "outfile.js"
},
"files": [
"outfile.js",
"template"
],
"engines": {
"node": ">=18.19.1 <19 || >=20.6.1"
},
"scripts": {
"format": "prettier --check \"**/*.{js,ts,json,md}\"",
"lint": "eslint .",
"type": "tsc --noEmit",
"build": "tsc && mv index.js outfile.js"
},
"repository": "https://github.com/vue-mini/create-vue-mini.git",
"author": "Yang Mingshan <y.mingshan3@gmail.com>",
"license": "MIT",
"dependencies": {
"ejs": "^5.0.1",
"kolorist": "^1.8.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/ejs": "^3.1.5",
"@types/node": "^25.5.0",
"@types/prompts": "^2.4.9",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
}
}