forked from ngocle2497/cli-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 786 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
40
41
{
"name": "rn-ml",
"version": "0.0.1",
"description": "React Native cli tools",
"main": "./lib/bin.js",
"bin": {
"rn-ml": "./lib/bin.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"/lib"
],
"scripts": {
"build": "tsc -p .",
"local": "yarn build && npm uninstall -g rn-ml && npm i -g"
},
"keywords": [
"cli-tools",
"rn-ml",
"rn command",
"cli",
"react-native"
],
"author": "Mason Le",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.8.0",
"@types/sharp": "^0.31.0",
"typescript": "^4.8.4"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"fs-extra": "^10.1.0",
"path": "^0.12.7",
"sharp": "^0.31.1"
}
}