-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1015 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
40
41
42
43
44
45
46
47
48
{
"name": "install-vue",
"version": "0.0.4",
"description": "Install Vue.js prereleases, done correctly",
"type": "module",
"exports": {
".": "./outfile.mjs"
},
"bin": "./outfile.mjs",
"files": [
"outfile.mjs"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "node ./release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haoqunjiang/install-vue.git"
},
"keywords": [
"vue",
"canary",
"alpha",
"beta"
],
"author": "Haoqun Jiang <[email protected]>",
"license": "MIT",
"devDependencies": {
"@clack/prompts": "^0.7.0",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "18.19.64",
"esbuild": "^0.24.0",
"execa": "^9.5.1",
"picocolors": "^1.1.1",
"prettier": "^3.3.3",
"semver": "^7.6.3"
},
"engines": {
"node": ">= 18.19.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}