-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 939 Bytes
/
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
{
"name": "create-vue-mini",
"version": "1.3.1",
"type": "module",
"packageManager": "pnpm@9.12.3",
"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,cjs,ts,json,md}\"",
"lint": "eslint --ext .js,.cjs,.ts .",
"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": "^3.1.10",
"kolorist": "^1.8.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^22.9.0",
"@types/prompts": "^2.4.9",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"xo": "^0.59.3"
}
}