-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 983 Bytes
/
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
{
"name": "soprox-abi",
"version": "0.0.18",
"description": "A convention that convert Rust types to NodeJS types",
"main": "dist/index.js",
"scripts": {
"release": "npm run build && npm publish",
"build": "npm run clean && babel src -d dist",
"clean": "rm -rf ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DescartesNetwork/soprox-abi.git"
},
"keywords": [
"SoproX",
"Solana",
"ABI"
],
"author": "Tu Phan",
"license": "MIT",
"bugs": {
"url": "https://github.com/DescartesNetwork/soprox-abi/issues"
},
"homepage": "https://github.com/DescartesNetwork/soprox-abi#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-arrow-functions": "^7.12.1",
"@babel/preset-env": "^7.12.1"
},
"dependencies": {
"@solana/web3.js": "^1.29.2",
"bn.js": "^5.1.3"
}
}