-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.39 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
{
"name": "graft",
"version": "0.0.0",
"private": true,
"description": "Graft — the agent-native CMS. Everything is code; the agent is the operator.",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "git rev-parse --git-dir >/dev/null 2>&1 && git config core.hooksPath .githooks || true",
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test --concurrency=50%",
"test:cold-agent": "pnpm --filter @usegraft/mcp exec vitest run src/cold-agent.test.ts src/cold-agent-http.test.ts",
"test:quickstart": "pnpm --filter @usegraft/cli exec vitest run src/quickstart.test.ts",
"lint": "oxlint",
"typecheck": "turbo run typecheck",
"format": "oxfmt",
"format:check": "oxfmt --check",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish",
"version:canary": "changeset version --snapshot canary",
"release:canary": "pnpm build && changeset publish --tag canary --no-git-tag",
"release:channel": "node scripts/release-channel.mjs",
"release:beta-enter": "changeset pre enter beta && node scripts/install-tag.mjs",
"release:beta-exit": "changeset pre exit && node scripts/install-tag.mjs",
"check:canary-snapshot": "node scripts/assert-canary-snapshot.mjs",
"check:registry-drift": "node scripts/check-registry-drift.mjs",
"check:ruleset-drift": "node scripts/check-ruleset-drift.mjs",
"check:install-tag": "node scripts/install-tag.mjs --check",
"check:dist-tags": "node scripts/check-dist-tags.mjs",
"sync:dist-tags": "node scripts/sync-dist-tags.mjs",
"check:site": "node scripts/check-site-build.mjs",
"install-tag": "node scripts/install-tag.mjs",
"check:error-docs": "node scripts/gen-error-docs.mjs --check",
"docs:errors": "node scripts/gen-error-docs.mjs",
"coverage": "node scripts/coverage.mjs",
"coverage:update": "node scripts/coverage.mjs --update"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@oxlint/plugins": "1.79.0",
"@types/node": "^22.20.1",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitest/coverage-v8": "3.2.7",
"oxfmt": "^0.56.0",
"oxlint": "^1.80.0",
"tsup": "^8.5.1",
"turbo": "^2.10.12",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vitest": "3.2.7"
},
"engines": {
"node": ">=22.16"
},
"packageManager": "pnpm@11.23.0"
}