-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.25 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
{
"name": "@invarch/saturn-sdk",
"version": "1.0.14",
"description": "",
"type": "module",
"main": "./dist/index.js",
"files": ["dist/**/*"],
"scripts": {
"build": "tsc --outDir ./dist",
"generate:defs": "node --experimental-specifier-resolution=node --loader ts-node/esm node_modules/.bin/polkadot-types-from-defs --package @invarch/saturn-sdk/typegen --input ./src/typegen --endpoint ./src/typegen/tinkernet.json",
"generate:meta": "node --experimental-specifier-resolution=node --loader ts-node/esm node_modules/.bin/polkadot-types-from-chain --package @invarch/saturn-sdk/typegen --endpoint ./src/typegen/tinkernet.json --output ./src/typegen --strict",
"typegen": "yarn generate:defs && yarn generate:meta",
"typedocs": "typedoc --excludePrivate --exclude \"**/rpc/**\" --exclude \"**/typegen/**\" --out typedocs/ src/index.ts"
},
"devDependencies": {
"@polkadot/typegen": "10.11.2",
"@types/node": "^18.15.13",
"prettier": "2.8.7",
"ts-node": "10.9.1",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@polkadot/api": "10.11.2"
},
"author": "InvArch Team",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/InvArch/saturn-sdk.git"
}
}