-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.17 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
{
"name": "forkengine-cli",
"version": "1.0.2",
"description": "",
"main": "./lib/index.js",
"bin": {
"forkengine-cli": "./lib/index.js"
},
"scripts": {
"dev": "nodemon",
"start": "ts-node src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"local": "npm i -g && forkengine-cli",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"keywords": [],
"author": "Endrealm",
"repository": "https://github.com/endrealm/forkengine-cli",
"license": "MIT",
"dependencies": {
"@types/inquirer": "^7.3.3",
"@types/inquirer-fuzzy-path": "^2.3.1",
"@types/node-fetch": "^2.5.12",
"@types/shelljs": "^0.8.9",
"chalk": "^4.1.1",
"clear": "^0.1.0",
"commander": "^8.0.0",
"figlet": "^1.5.0",
"inquirer": "^8.1.2",
"inquirer-fuzzy-path": "^2.3.0",
"node": "^17.3.0",
"node-fetch": "^2.6.1",
"ora": "^5.4.1",
"path": "^0.12.7",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.4",
"@types/node": "^16.4.2",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}