-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
66
67
68
{
"name": "@keystonehq/keystone-sdk",
"version": "0.9.1",
"description": "Keystone SDK",
"main": "dist/index.js",
"scripts": {
"start": "tsc -w",
"build": "tsc -b tsconfig.build.json",
"test": "jest src",
"proto": "buf generate src",
"lint": "eslint src --ext .js,.ts",
"lint-fix": "eslint src --ext .js,.ts --fix"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/KeystoneHQ/keystone-sdk-web.git"
},
"author": "Keystone Engineering Team",
"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.7.0",
"@keystonehq/bc-ur-registry-aptos": "^0.6.3",
"@keystonehq/bc-ur-registry-arweave": "^0.5.3",
"@keystonehq/bc-ur-registry-btc": "^0.1.1",
"@keystonehq/bc-ur-registry-cardano": "^0.5.0",
"@keystonehq/bc-ur-registry-cosmos": "^0.5.3",
"@keystonehq/bc-ur-registry-eth": "^0.20.1",
"@keystonehq/bc-ur-registry-evm": "^0.5.3",
"@keystonehq/bc-ur-registry-keystone": "^0.4.3",
"@keystonehq/bc-ur-registry-near": "^0.9.3",
"@keystonehq/bc-ur-registry-sol": "^0.9.3",
"@keystonehq/bc-ur-registry-stellar": "^0.0.4",
"@keystonehq/bc-ur-registry-sui": "0.4.0-alpha.0",
"@keystonehq/bc-ur-registry-ton": "^0.1.2",
"@ngraveio/bc-ur": "^1.1.6",
"@noble/hashes": "^1.5.0",
"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": "^8.0.1",
"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"
}
}