-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 KB
/
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": "@kanvas/andromeda-cli",
"version": "0.0.5",
"description": "",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"@kanvas/andromeda-cli": "bin/create-project"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "yarn compile && ./bin/create-project test",
"copy-files": "cp -R src/templates/. dist/templates",
"compile": "rimraf ./dist && tsc -p . && yarn copy-files",
"prepare": "yarn compile"
},
"keywords": [
"cli",
"@kanvas",
"@kanvas/andromeda-cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/args": "^3.0.1",
"@types/chalk": "^2.2.0",
"@types/esm": "^3.2.0",
"@types/execa": "^2.0.0",
"@types/inquirer": "^7.3.3",
"@types/listr": "^0.14.4",
"@types/ncp": "^2.0.5",
"@types/node": "^16.4.12",
"arg": "^5.0.0",
"chalk": "^4.1.2",
"esm": "^3.2.25",
"execa": "^5.1.1",
"inquirer": "^8.1.2",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"rimraf": "^3.0.2"
}
}