-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 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
{
"name": "@graphprotocol/hypergraph-react",
"version": "0.10.6",
"description": "React implementation and additional functionality, components, and hooks for the hypergraph SDK framework",
"keywords": [
"Web3",
"Local-First",
"Knowledge Graph",
"Graph Protocol",
"react"
],
"publishConfig": {
"access": "public",
"directory": "publish",
"provenance": false
},
"repository": {
"type": "git",
"url": "https://github.com/graphprotocol/hypergraph.git",
"directory": "packages/hypergraph-react"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"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"
},
"peerDependencies": {
"@graphprotocol/hypergraph": "workspace:*",
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@graphprotocol/hypergraph": "workspace:*",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.10",
"@vitejs/plugin-react": "^5.0.1",
"@xstate/store": "^3.9.2",
"jsdom": "^26.1.0",
"react": "^19.1.1"
},
"dependencies": {
"@automerge/automerge": "^3.1.1",
"@automerge/automerge-repo": "^2.2.0",
"@automerge/automerge-repo-react-hooks": "^2.2.0",
"@graphprotocol/grc-20": "^0.32.3",
"@noble/hashes": "^1.8.0",
"@tanstack/react-query": "^5.85.5",
"effect": "^3.17.13",
"graphql-request": "^7.2.0",
"siwe": "^3.0.0",
"uuid": "^11.1.0",
"viem": "^2.34.0"
}
}