-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.91 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
{
"name": "@graphrefly/stack",
"version": "0.1.9",
"private": false,
"description": "Review AI changes by intent, architectural reach, and deterministic readiness.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/graphrefly/graphrefly-stack.git"
},
"engines": {
"node": ">=24 <25",
"pnpm": ">=11.7 <12"
},
"packageManager": "pnpm@11.7.0+sha512.19cc852c120c7125760f2443ee6be0ca5b40f9f50598de1a09a1f177503e010e57c23c77646e01e761de59bf874fb22a3398c33ab9691fc13eb946b6f0f4d620",
"bin": {
"grfs": "dist/grfs.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm --filter @graphrefly-stack/contracts build && pnpm --filter @graphrefly-stack/core build && pnpm --filter @graphrefly-stack/review build && pnpm --filter @graphrefly-stack/cli build && pnpm --filter @graphrefly-stack/hosted build",
"build:package": "pnpm build && node scripts/build-package.mjs",
"changeset": "changeset",
"check": "pnpm docs:check && pnpm skills:check && pnpm test:compatibility && pnpm test:contracts && pnpm test:architecture && pnpm test:semantic && pnpm test:product && pnpm test:package && pnpm test:live && biome check .",
"cli": "node packages/cli/dist/cli.js",
"docs:check": "node scripts/check-docs.mjs",
"product:sample": "node scripts/create-generic-sample.mjs",
"review:dev": "pnpm --filter @graphrefly-stack/review dev",
"smoke:clean-room": "node scripts/smoke-clean-room.mjs",
"skills:check": "node scripts/check-skills.mjs",
"test:architecture": "pnpm build && node --test tests/architecture/*.test.mjs",
"test:compatibility": "node --test tests/compatibility/*.test.mjs",
"test:contracts": "pnpm --filter @graphrefly-stack/contracts build && node --test tests/contracts/*.test.mjs",
"test:live": "pnpm --filter @graphrefly-stack/contracts build && pnpm --filter @graphrefly-stack/core build && pnpm --filter @graphrefly-stack/cli build && node --test tests/live/*.test.mjs",
"test:package": "node --test tests/package/*.test.mjs",
"test:product": "pnpm build && node --test tests/product/*.test.mjs",
"test:semantic": "pnpm --filter @graphrefly-stack/contracts build && pnpm --filter @graphrefly-stack/core build && pnpm --filter @graphrefly-stack/cli build && node --test tests/semantic/*.test.mjs",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"prepack": "pnpm build:package",
"release": "changeset publish",
"version-packages": "changeset version"
},
"dependencies": {
"@openai/codex-sdk": "0.143.0"
},
"peerDependencies": {
"@graphrefly/ts": ">=0.3.0 <0.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.31.0",
"@graphrefly/ts": "0.3.0",
"@types/node": "26.1.1",
"@types/semver": "7.7.1",
"esbuild": "0.28.1",
"typescript": "7.0.2"
}
}