-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.94 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
{
"name": "create-hypergraph",
"version": "0.7.0",
"description": "CLI toolchain to scaffold a Hypergraph-enabled application with a given template.",
"type": "module",
"bin": {
"create-hypergraph": "./dist/bin.js",
"ch": "./dist/bin.js"
},
"files": [
"template-*",
"dist",
"llms.txt",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/graphprotocol/hypergraph.git",
"directory": "packages/create-hypergraph"
},
"publishConfig": {
"access": "public",
"directory": "dist",
"linkDirectory": false
},
"scripts": {
"test": "vitest run",
"dev": "NODE_ENV=development pnpx tsx ./src/bin.ts",
"build": "tsdown && pnpm run copy-all",
"copy-packagejson": "tsx scripts/copy-package-json.ts",
"copy-templates": "tsx scripts/copy-template-dir.ts",
"copy-readme": "cp README.md dist/README.md",
"copy-changelog": "cp CHANGELOG.md dist/CHANGELOG.md",
"copy-llms": "cp llms.txt dist/llms.txt",
"copy-all": "pnpm run copy-packagejson && pnpm run copy-templates && pnpm run copy-readme && pnpm run copy-changelog && pnpm run copy-llms",
"check": "tsc --noEmit",
"start": "node ./dist/bin.js",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe"
},
"keywords": [
"The Graph",
"Web3",
"Knowledge Graph",
"Hypergraph",
"TypeSync"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/graphprotocol/hypergraph/issues"
},
"homepage": "https://github.com/graphprotocol/hypergraph/tree/main/packages/create-hypergraph-app#readme",
"devDependencies": {
"@effect/cli": "^0.69.2",
"@effect/platform": "^0.90.10",
"@effect/platform-node": "^0.96.1",
"@effect/printer-ansi": "^0.45.0",
"@effect/vitest": "^0.25.1",
"@types/node": "^24.3.0",
"effect": "^3.17.13",
"execa": "^9.6.0",
"tsdown": "^0.14.1",
"tsx": "^4.20.4"
}
}