forked from KeystoneHQ/keystone-sdk-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.04 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@keystonehq/keystone-sdk",
"version": "0.6.0",
"description": "Keystone SDK",
"main": "dist/index.js",
"scripts": {
"start": "tsc -w",
"build": "tsc -b tsconfig.build.json",
"test": "jest src",
"proto": "buf generate src"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KeystoneHQ/keystone-sdk-web.git"
},
"author": "Renfeng Shi",
"license": "ISC",
"bugs": {
"url": "https://github.com/KeystoneHQ/keystone-sdk-web/issues"
},
"homepage": "https://github.com/KeystoneHQ/keystone-sdk-web#readme",
"dependencies": {
"@bufbuild/protobuf": "^1.2.0",
"@keystonehq/bc-ur-registry": "^0.6.4",
"@keystonehq/bc-ur-registry-aptos": "^0.3.2",
"@keystonehq/bc-ur-registry-arweave": "^0.4.0",
"@keystonehq/bc-ur-registry-btc": "^0.1.0",
"@keystonehq/bc-ur-registry-cardano": "^0.3.0",
"@keystonehq/bc-ur-registry-cosmos": "^0.2.2",
"@keystonehq/bc-ur-registry-eth": "^0.20.0",
"@keystonehq/bc-ur-registry-evm": "^0.5.2",
"@keystonehq/bc-ur-registry-keystone": "^0.1.0",
"@keystonehq/bc-ur-registry-near": "^0.8.0",
"@keystonehq/bc-ur-registry-sol": "^0.6.2",
"@keystonehq/bc-ur-registry-stellar": "^0.0.3",
"@keystonehq/bc-ur-registry-sui": "^0.3.0",
"@keystonehq/bc-ur-registry-ton": "^0.1.1",
"@ngraveio/bc-ur": "^1.1.6",
"bs58check": "^3.0.1",
"pako": "^2.1.0",
"ripple-binary-codec": "^1.4.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@bufbuild/buf": "^1.15.0-1",
"@bufbuild/protoc-gen-es": "^1.2.0",
"@types/jest": "^29.5.0",
"@types/pako": "^2.0.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.0.4",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}