-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.16 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
{
"name": "codelatch",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration --passWithNoTests",
"test:conformance": "vitest run tests/conformance --passWithNoTests",
"test": "pnpm test:unit && pnpm test:integration && pnpm test:conformance",
"verify": "pnpm lint && pnpm typecheck && pnpm test",
"build:plugin": "node scripts/bundle-plugin.mjs adapter-opencode",
"build:plugins": "node scripts/bundle-plugin.mjs adapter-opencode"
},
"devDependencies": {
"@codelatch/adapter-base": "workspace:*",
"@codelatch/adapter-opencode": "workspace:*",
"@codelatch/core": "workspace:*",
"@codelatch/schemas": "workspace:*",
"@codelatch/shared-utils": "workspace:*",
"@codelatch/workflow-contracts": "workspace:*",
"@eslint/js": "^9.36.0",
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"vitest": "^3.2.4",
"zod": "^4.1.5",
"esbuild": "^0.25.0"
}
}