-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.47 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
{
"name": "darwinia.js",
"version": "3.2.0",
"description": "A library to help fetch darwinia storages and dispatch calls",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"gen:koi": "CHAIN=koi ENDPOINT=https://koi-rpc.darwinia.network ts-node generator/generator.ts",
"gen:crab": "CHAIN=crab ENDPOINT=https://crab-rpc.darwinia.network ts-node generator/generator.ts",
"gen:darwinia": "CHAIN=darwinia ENDPOINT=https://rpc.darwinia.network ts-node generator/generator.ts",
"gen": "npm run gen:koi && npm run gen:crab && npm run gen:darwinia",
"test": "npm run build && jest",
"doc": "npm run build && rm -rf doc && jsdoc -r -c jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/darwinia-network/darwinia.js.git"
},
"keywords": [
"substrate",
"darwinia",
"storage",
"evm"
],
"author": "Aki Wu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/darwinia-network/darwinia.js/issues"
},
"homepage": "https://github.com/darwinia-network/darwinia.js#readme",
"type": "commonjs",
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/jest": "^29.2.5",
"axios": "^1.2.1",
"clean-jsdoc-theme": "^4.2.2",
"ejs": "^3.1.8",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@polkadot/types": "^9.14.2",
"ethers": "^5.7.2"
}
}