-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 869 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
{
"name": "flashlight-icli",
"version": "0.0.29",
"description": "Interactive command line interface for flashlight",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc && chmod +x dist/index.js",
"icli": "node dist/index.js",
"clean-npx-cache": "npx clear-npx-cache",
"deploy": "npm run build && npm publish"
},
"bin": {
"my-script": "dist/index.js"
},
"keywords": [
"react-native",
"flashlight"
],
"repository": "https://github.com/WayneKim92/flashlight-icli",
"homepage": "https://github.com/WayneKim92/flashlight-icli#readme",
"author": "wayne-kim",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"inquirer": "^8.2.6",
"semver": "^7.5.4",
"shelljs": "^0.8.5"
},
"devDependencies": {
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}