-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.14 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
{
"name": "patchwork-monorepo",
"private": true,
"version": "0.0.0",
"description": "The audit trail for AI coding agents",
"scripts": {
"build": "turbo build",
"test": "turbo test",
"test:log": "node scripts/update-test-log.mjs",
"test:log:write": "WRITE_TEST_LOG=1 node scripts/update-test-log.mjs",
"hooks:install": "node scripts/setup-git-hooks.mjs",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"clean": "turbo clean",
"changeset": "changeset",
"version": "changeset version && node scripts/sync-versions.mjs",
"release": "pnpm build && changeset publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/cli": "^2.30.0",
"@types/node": "^25.2.3",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"vitepress": "^1.6.4"
},
"license": "BUSL-1.1",
"repository": {
"type": "git",
"url": "https://github.com/JonoGitty/codex-audit.git"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0"
}
}