-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.71 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": "neargen-js",
"version": "0.0.1",
"description": "",
"main": "index.js",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:utils && npm run build:core && npm run build:abigen && npm run build:typegen",
"format": "run-s format:*",
"lint": "run-s lint:*",
"build:abigen" : "cd packages/abigen && npm run build",
"format:abigen" : "cd packages/abigen && npm run format",
"lint:abigen" : "cd packages/abigen && npm run lint",
"build:typegen" : "cd packages/typegen && npm run build",
"format:typegen" : "cd packages/typegen && npm run format",
"lint:typegen" : "cd packages/typegen && npm run lint",
"build:core" : "cd packages/core && npm run build",
"format:core" : "cd packages/core && npm run format",
"lint:core" : "cd packages/core && npm run lint",
"build:utils" : "cd packages/utils && npm run build",
"format:utils" : "cd packages/utils && npm run format",
"lint:utils" : "cd packages/utils && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedDuck-Software/near-typegen.git"
},
"author": "RedDuck Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/RedDuck-Software/near-typegen/issues"
},
"homepage": "https://github.com/RedDuck-Software/near-typegen#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.27.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1"
}
}