-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.69 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
{
"name": "harness-score-monorepo",
"private": true,
"version": "0.1.0",
"description": "AI coding harness engineering guide + deterministic harness-maturity scanner, Cursor-flagship and expanding to other AI-first dev tools",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w harness-score",
"test": "npm run test -w harness-score && npm run test:release",
"test:release": "node --test scripts/release.test.mjs",
"test:coverage": "npm run test:coverage -w harness-score",
"scan": "node packages/cli/dist/cli.js .",
"plugins:sync": "node plugins/shared/generate-tools.mjs",
"plugins:generate": "node plugins/shared/generate.mjs",
"plugins:sync-check": "npm run build && node plugins/shared/generate-tools.mjs --check && node plugins/shared/generate.mjs --check",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"bench": "npm run bench -w harness-score",
"lint": "biome check .",
"format": "biome check --write .",
"changeset": "changeset",
"version-packages": "changeset version && node scripts/sync-version.mjs",
"release:notes": "node scripts/release-notes.mjs",
"release:prepare": "npm run version-packages && npm test && npm run lint && npm run scan && npm run docs:build && npm run release:notes",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@changesets/cli": "^2.31.0",
"husky": "^9.1.7",
"vitepress": "^1.6.0"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/paladini/harness-score.git"
}
}