-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
39 lines (39 loc) · 884 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-coc-extension",
"version": "0.8.0",
"author": "Heyward Fann <fannheyward@gmail.com>",
"license": "MIT",
"bin": {
"create-coc-extension": "bin/cli.js"
},
"engines": {
"node": ">=16"
},
"files": [
"bin/cli.js",
"template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fannheyward/create-coc-extension.git"
},
"scripts": {
"clean": "rimraf bin/cli.js",
"build": "node esbuild.js",
"prepare": "rimraf bin/cli.js && node esbuild.js"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/which": "^3.0.3",
"@types/yargs": "^17.0.32",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"esbuild": "^0.19.11",
"fast-glob": "^3.3.2",
"inquirer": "^9.2.12",
"rimraf": "^5.0.5",
"typescript": "^5.3.3",
"which": "^4.0.0"
},
"dependencies": {}
}