-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.44 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.44 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
{
"name": "ridgeline",
"version": "0.7.16",
"description": "Build harness for long-horizon software execution",
"license": "MIT",
"bin": {
"ridgeline": "dist/cli.js"
},
"scripts": {
"build": "tsc && rm -rf dist/agents && cp -r src/agents dist/agents && rm -rf dist/flavours && cp -r src/flavours dist/flavours && rm -rf dist/plugin && cp -r plugin dist/plugin && cp src/shapes/*.json dist/shapes/",
"dev": "tsc --watch",
"lint": "npm run lint:code && npm run lint:markdown && npm run lint:agents && npm run lint:fallow",
"lint:code": "oxlint --ignore-pattern examples",
"lint:markdown": "markdownlint-cli2 '**/*.md'",
"lint:agents": "agnix",
"lint:fallow": "npx fallow",
"typecheck": "tsc --noEmit --pretty -p tsconfig.check.json",
"prepublishOnly": "npm run build",
"coverage": "vitest run --coverage",
"test": "npm run typecheck && npm run lint && npm run test:unit",
"test:unit": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:watch": "vitest"
},
"files": [
"dist"
],
"dependencies": {
"colorthief": "3.3.1",
"commander": "13.0.0",
"free-tex-packer-core": "0.3.5",
"sharp": "0.34.5"
},
"devDependencies": {
"@types/node": "22.19.17",
"@vitest/coverage-v8": "4.1.2",
"agnix": "0.17.0",
"fallow": "2.13.0",
"markdownlint-cli2": "0.21.0",
"oxlint": "1.58.0",
"typescript": "5.9.3",
"vitest": "4.1.2"
}
}