forked from Phala-Network/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "@phala/sdk",
"version": "0.3.1",
"description": "Phala JS SDK",
"homepage": "https://github.com/Phala-Network/js-sdk/tree/main/packages/sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/Phala-Network/js-sdk.git",
"directory": "packages/sdk"
},
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsup",
"build:proto": "scripts/build_proto.sh",
"dev": "tsup --watch",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"publish": "npm publish --access public"
},
"dependencies": {
"@phala/typedefs": "^0.2.30",
"@polkadot/api": "^8.9.1",
"@polkadot/keyring": "^9.6.1",
"@polkadot/util": "^9.6.1",
"@polkadot/util-crypto": "^9.6.1",
"@polkadot/wasm-crypto": "6.1.5",
"axios": "^0.27.2",
"crypto-browserify": "^3.12.0",
"protobufjs": "^6.11.3",
"rxjs": "^7.5.5"
},
"devDependencies": {
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"tsup": "^6.1.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16"
}
}