-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "@golem-sdk/create-golem-app",
"version": "1.0.0",
"description": "Quickly generate an app running on Golem network",
"main": "src/run.js",
"bin": {
"create-golem-app": "src/run.js"
},
"scripts": {
"lint": "npm run lint:eslint",
"lint:eslint": "eslint .",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install"
},
"repository": {
"type": "github",
"url": "github:GolemFactory/create-golem-app"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"golem",
"network",
"distributed",
"computing",
"sdk",
"marketplace",
"cli",
"scaffolding"
],
"author": "GolemFactory <[email protected]>",
"license": "GPL-3.0",
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/GolemFactory/create-golem-app/issues"
},
"homepage": "https://github.com/GolemFactory/create-golem-app#readme",
"dependencies": {
"@golem-sdk/cli": "^2.5.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"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"
}
}