-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.01 KB
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
{
"name": "@graphprotocol/hypergraph",
"version": "0.0.3",
"description": "SDK for building performant, type-safe, local-first dapps on top of The Graph ecosystem knowledge graphs.",
"publishConfig": {
"access": "public",
"directory": "publish",
"provenance": false
},
"repository": {
"type": "git",
"url": "https://github.com/graphprotocol/hypergraph.git",
"directory": "packages/hypergraph"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./connect": "./dist/connect/index.js",
"./content-addressing": "./dist/content-addressing/index.js",
"./crypto": "./dist/crypto/index.js",
"./entity": "./dist/entity/index.js",
"./identity": "./dist/identity/index.js",
"./inboxes": "./dist/inboxes/index.js",
"./key": "./dist/key/index.js",
"./messages": "./dist/messages/index.js",
"./space-events": "./dist/space-events/index.js",
"./space-info": "./dist/space-info/index.js",
"./store": "./dist/store.js",
"./store-connect": "./dist/store-connect.js",
"./types": "./dist/types.js"
},
"sideEffects": [],
"scripts": {
"build": "tsc -b --force tsconfig.build.json && babel dist --plugins annotate-pure-calls --out-dir dist --source-maps && node ../../scripts/package.mjs",
"test": "vitest"
},
"devDependencies": {
"@types/uuid": "^10.0.0"
},
"dependencies": {
"@automerge/automerge": "^2.2.9",
"@automerge/automerge-repo": "^2.0.6",
"@effect/experimental": "^0.44.20",
"@graphprotocol/grc-20": "^0.21.2",
"@noble/ciphers": "^1.3.0",
"@noble/curves": "^1.9.0",
"@noble/hashes": "^1.8.0",
"@noble/secp256k1": "^2.2.3",
"@rhinestone/module-sdk": "^0.2.8",
"@serenity-kit/noble-sodium": "^0.2.1",
"@xstate/store": "^3.5.1",
"bs58check": "^4.0.0",
"effect": "^3.16.3",
"permissionless": "^0.2.47",
"siwe": "^3.0.0",
"uuid": "^11.1.0",
"viem": "^2.30.6"
}
}