-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1010 Bytes
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
{
"name": "codex-workflows",
"version": "0.2.0",
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robzilla1738/Codex-Workflows.git"
},
"packageManager": "pnpm@10.30.3",
"scripts": {
"build": "pnpm -r --sort build",
"clean": "find packages -name dist -type d -prune -exec rm -rf {} +",
"cwf": "tsx packages/cli/src/index.tsx",
"mcp": "tsx packages/mcp-server/src/index.ts",
"plugin:build": "pnpm build && node scripts/build-plugin.mjs",
"plugin:validate": "node scripts/validate-plugin.mjs",
"test": "vitest run",
"typecheck": "pnpm build && pnpm -r --sort typecheck",
"validate:plugin": "pnpm plugin:build && pnpm plugin:validate"
},
"devDependencies": {
"@jitl/quickjs-wasmfile-release-sync": "0.32.0",
"@types/node": "^24.10.1",
"esbuild": "^0.28.0",
"ink-testing-library": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
}
}