-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 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
45
{
"name": "agentship",
"version": "0.1.0",
"description": "AgentShip Verify — evidence-based preflight checks for agent-written code.",
"private": true,
"bin": {
"agentship": "dist/agentship.cjs"
},
"files": [
"dist/agentship.cjs",
"README.md"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "node --import tsx --test tests/**/*.test.ts",
"review": "node --import tsx src/cli/index.ts",
"benchmark:intent": "node --import tsx src/cli/index.ts benchmark --fixtures fixtures/intent/executable-patch-corpus.json",
"benchmark:intent:scenarios": "node --import tsx src/cli/index.ts benchmark --fixtures fixtures/intent/seeded-omission-cases.json",
"metrics": "node --import tsx src/cli/index.ts metrics",
"build:cli": "esbuild src/cli/index.ts --bundle --platform=node --format=cjs --target=node20 --outfile=dist/agentship.cjs",
"verify:cli": "npm run build:cli && node scripts/verify-cli.mjs"
},
"dependencies": {
"next": "^16.3.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"undici": "^7.29.0",
"yaml": "^2.9.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"esbuild": "^0.28.2",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"tailwindcss": "^4",
"tsx": "^4.23.13",
"typescript": "^5"
}
}