-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
51
52
53
54
55
56
57
58
{
"name": "grida",
"version": "0.0.15",
"private": false,
"license": "Apache-2.0",
"description": "grida CLI",
"homepage": "https://grida.co/cli",
"repository": "https://github.com/gridaco/code",
"dependencies": {
"@base-sdk-fp/auth": "^0.1.4",
"@flutter-daemon/server": "^0.0.1",
"dotenv": "^16.0.1",
"enquirer": "^2.3.6",
"glob": "^8.0.3",
"json5": "^2.2.1",
"keytar": "^7.9.0",
"node-fetch": "2",
"node-machine-id": "^1.1.12",
"open": "^8.4.0",
"ora": "^5.4.0",
"semver": "^7.3.7",
"which": "^2.0.2",
"yaml": "^2.1.1",
"yargs": "^17.2.1"
},
"scripts": {
"clean": "rimraf dist",
"dev": "ts-node index.ts",
"dev:watch": "ts-node-dev index.ts --watch",
"test": "jest",
"build": "ncc build index.ts -o dist -e keytar -e glob -e dotenv",
"prepack": "yarn test && yarn clean && yarn build"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^18.6.1",
"@types/semver": "^7.3.10",
"@types/which": "^2.0.1",
"@types/yargs": "^17.0.3",
"@vercel/ncc": "^0.34.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"bin": {
"grida": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}