-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.05 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.05 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
{
"name": "install-vue",
"version": "0.0.9",
"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 <npm@haoqun.me>",
"license": "MIT",
"devDependencies": {
"@clack/prompts": "^1.0.1",
"@tsconfig/node20": "^20.1.9",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^20.19.33",
"esbuild": "^0.27.3",
"execa": "^9.6.1",
"picocolors": "^1.1.1",
"prettier": "3.8.1",
"semver": "^7.7.4",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 20.19.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"packageManager": "pnpm@10.29.3"
}