forked from hgraph-io/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.6 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
{
"homepage": "https://hgraph.io",
"name": "@hgraph.io/sdk",
"description": "hgraph.io sdk",
"version": "0.8.0",
"main": "./dist/node-cjs.js",
"module": "./dist/node-esm.js",
"browser": {
"./dist/node-cjs.js": "./dist/browser-cjs.js",
"./dist/node-esm.js": "./dist/browser-esm.js"
},
"author": "Tyler McDonald <[email protected]> (https://hgraph.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hgraph.io/sdk.git"
},
"bugs": {
"url": "https://github.com/hgraph.io/sdk/issues"
},
"keywords": [
"graphql",
"nft",
"token",
"hedera",
"mirror-node",
"crypto",
"api",
"hgraph",
"web3",
"decentralized",
"dao"
],
"types": "./dist/index.d.ts",
"dependencies": {
"asn1.js": "^5.4.1",
"bufferutil": "^4.0.7",
"encoding": "^0.1.13",
"ethers": "^6.13.0",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.3",
"isomorphic-fetch": "^3.0.0",
"isomorphic-ws": "^5.0.0",
"jose": "^4.14.4",
"json-bigint": "^1.0.0",
"rfc6902": "^5.1.1",
"ts-invariant": "^0.10.3",
"tweetnacl": "^1.0.3",
"utf-8-validate": "^6.0.3"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/json-bigint": "^1.0.1",
"@types/node": "^18.11.18",
"@types/react": "^18.3.2",
"esbuild": "0.21.4",
"nodemon": "^2.0.20",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"scripts": {
"watch": "nodemon -w src -e ts,json,gql,graphql --exec 'npm run build'",
"build": "node ./build.mjs",
"prepublishOnly": "rm -Rf dist && npm run build"
}
}