forked from robrechtme/loco-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.03 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
49
50
{
"name": "loco-cli",
"version": "3.0.0",
"description": "CLI tool for syncing assets from and to Loco",
"license": "MIT",
"repository": "robrechtme/loco-cli",
"author": {
"name": "Robrecht Meersman",
"email": "[email protected]",
"url": "https://robrecht.me"
},
"main": "./dist/cli.js",
"bin": {
"loco-cli": "./dist/cli.js"
},
"engines": {
"node": "14.x || 16.x || 18.x"
},
"scripts": {
"test": "vitest run",
"build": "tsc",
"loco-cli": "yarn build && node ./dist/cli.js"
},
"files": [
"dist",
"*.d.ts"
],
"keywords": [
"cli",
"cli-app",
"loco",
"localize"
],
"dependencies": {
"chalk": "^4.1.2",
"cli-progress": "^3.11.2",
"commander": "^9.4.1",
"cosmiconfig": "^8.0.0",
"deep-object-diff": "^1.1.9",
"inquirer": "^8.2.4",
"isomorphic-unfetch": "^3.1.0"
},
"devDependencies": {
"@types/cli-progress": "3.11.0",
"@types/inquirer": "8.2.1",
"@types/node": "14.x",
"typescript": "4.9.4",
"vitest": "0.26.1"
}
}