forked from Brushfam/typechain-polkadot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.32 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
{
"name": "typechain-workspace",
"workspaces": [
"packages/*",
"examples/*"
],
"files": [
"tests/**/*"
],
"private": true,
"scripts": {
"start-typechain": "npx @prosopo/typechain-polkadot --in ./artifacts --out ./out",
"build:all": "npm run --workspaces --if-present build",
"publish:dry-run": "npm --workspaces publish --dry-run",
"publish": "npm --workspaces publish --access=public",
"gen-test-ts": "npx @prosopo/typechain-polkadot --in tests/artifacts --out tests/generated",
"only-test": "npx jest --no-cache --maxWorkers 1",
"test": "npm run gen-test-ts && npm run only-test",
"lint": "eslint \"{packages, examples}/**/*.ts\"",
"lint:fix": "eslint --fix \"{packages, examples}/**/*.ts\""
},
"dependencies": {
"@prosopo/typechain-polkadot": "file:packages/typechain-polkadot",
"@prosopo/typechain-types": "file:packages/typechain-types",
"@types/bn.js": "^5.1.0",
"@types/eslint": "^8.4.3",
"@types/jest": "^27.5.2",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.18.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"hjson": "^3.2.2",
"ts-jest": "^28.0.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.2.2"
}
}