-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@golem-sdk/cli",
"version": "1.0.0",
"description": "CLI for Golem SDK",
"repository": {
"type": "github",
"url": "github:GolemFactory/golem-sdk-cli"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"watch": "tsc --watch",
"lint": "npm run lint:ts && npm run lint:eslint",
"lint:ts": "tsc --project tsconfig.json --noEmit",
"lint:eslint": "eslint --config .eslintrc --no-eslintrc .",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install"
},
"bin": {
"golem-sdk": "./dist/main.js"
},
"keywords": [
"golem",
"network",
"distributed",
"computing",
"sdk",
"internet",
"computer",
"marketplace",
"cli"
],
"author": "GolemFactory <contact@golem.network>",
"license": "GPL-3.0",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@golem-sdk/golem-js": "^3.3.0",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"chalk": "4.1.2",
"commander": "^12.0.0",
"console-table-printer": "^2.12.0",
"decimal.js-light": "^2.5.1",
"enquirer": "^2.4.1",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"new-find-package-json": "^2.0.0",
"pretty-ms": "^9.0.0",
"shell-quote": "^1.8.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.4.2",
"@types/node": "^20.11.20",
"@types/node-fetch": "^2.6.11",
"@types/shell-quote": "^1.7.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"semantic-release": "^23.0.2",
"ts-node": "^10.9.2"
},
"workspaces": [
"data/project-templates/*"
],
"files": [
"dist",
"data"
]
}