-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@graphprotocol/hypergraph-cli",
"version": "0.0.0-alpha.28",
"type": "module",
"license": "MIT",
"description": "CLI toolchain to view existing types, select, pick, extend to create schemas and generate a @graphprotocol/hypergraph schema.",
"repository": {
"type": "git",
"url": "git+https://github.com/graphprotocol/hypergraph.git",
"directory": "apps/typesync"
},
"publishConfig": {
"access": "public",
"directory": "dist",
"linkDirectory": false
},
"bin": {
"hypergraph": "./dist/bin.js",
"hg": "./dist/bin.js"
},
"files": ["README.md", "dist"],
"scripts": {
"codegen:gql": "graphql-codegen --config ./graphql.codegen.ts",
"build:client": "vite build",
"build": "pnpm run clean && pnpm run build:client && tsup && pnpm run copy-all",
"build:ts": "tsup",
"dev": "vite build && pnpx tsx ./src/bin.ts typesync",
"dev:cli": "pnpx tsx ./src/bin.ts typesync",
"dev:client": "vite --force",
"clean": "rimraf dist client/dist",
"start": "node ./dist/bin.js",
"check": "tsc --noEmit",
"test": "vitest run",
"coverage": "vitest run --coverage",
"copy-package-json": "tsx scripts/copy-package-json.ts",
"copy-client-dist": "tsx scripts/copy-client-dist.ts",
"copy-all": "pnpm run copy-package-json && pnpm run copy-client-dist",
"hypergraph": "pnpx tsx ./src/bin.ts typesync"
},
"devDependencies": {
"@effect/cli": "^0.66.1",
"@effect/experimental": "^0.51.1",
"@effect/language-service": "^0.23.3",
"@effect/platform": "^0.87.1",
"@effect/platform-node": "^0.88.3",
"@effect/sql": "^0.40.1",
"@effect/sql-sqlite-node": "^0.41.1",
"@effect/vitest": "^0.23.10",
"@graphprotocol/grc-20": "^0.21.6",
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/client-preset": "^4.8.3",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-operations": "^4.6.1",
"@tanstack/router-plugin": "^1.123.2",
"@types/node": "^24.0.8",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"glob": "^11.0.3",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"vite": "^6.3.5",
"rimraf": "^6.0.1"
},
"dependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"@headlessui/react": "^2.2.4",
"@heroicons/react": "^2.2.0",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-tabs": "^1.1.12",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-form": "^1.12.4",
"@tanstack/react-query": "^5.81.5",
"@tanstack/react-query-devtools": "^5.81.5",
"@tanstack/react-router": "^1.123.2",
"@tanstack/react-router-devtools": "^1.123.2",
"better-sqlite3": "^12.2.0",
"date-fns": "^4.1.0",
"effect": "^3.16.10",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"jotai": "^2.12.5",
"open": "^10.1.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"shiki": "^3.7.0",
"tailwindcss": "^4.1.11"
}
}