-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.65 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
{
"name": "@graphprotocol/hypergraph-react",
"version": "0.0.10",
"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/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.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.3",
"@vitejs/plugin-react": "^4.4.1",
"@xstate/store": "^3.5.1",
"jsdom": "^26.1.0",
"react": "^19.1.0"
},
"dependencies": {
"@automerge/automerge": "^2.2.9",
"@automerge/automerge-repo": "^2.0.6",
"@automerge/automerge-repo-react-hooks": "^2.0.6",
"@graphprotocol/grc-20": "^0.21.2",
"@noble/hashes": "^1.8.0",
"@tanstack/react-query": "^5.75.5",
"effect": "^3.16.10",
"graphql-request": "^7.1.2",
"siwe": "^3.0.0",
"uuid": "^11.1.0",
"viem": "^2.29.0"
}
}