-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "@klever/sdk",
"version": "4.2.2",
"description": "Kleverchain SDK integration with JS",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/klever-io/kleverchain-js.git"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "rollup -c",
"test": "jest",
"test-index": "yarn build && node ./dist/index.js"
},
"keywords": [],
"author": "Klever",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/google-protobuf": "^3.15.6",
"@types/jest": "^29.2.2",
"jest": "^29.3.1",
"rollup": "^2.70.0",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-proto": "^1.133.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"peerDependencies": {},
"dependencies": {
"@klever/kleverweb": "^1.1.0",
"@noble/ed25519": "^1.7.1",
"bech32": "^2.0.0",
"blakejs": "^1.2.1",
"google-protobuf": "^3.21.2"
}
}