-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.7 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
{
"name": "polycli",
"private": true,
"version": "1.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build:plugins": "node scripts/build-plugin-bundles.mjs",
"test": "npm run build:plugins && node --test packages/polycli-utils/test/*.test.js packages/polycli-timing/test/*.test.js packages/polycli-runtime/test/*.test.js plugins/polycli/scripts/tests/*.test.mjs scripts/tests/*.test.mjs",
"validate:bundles": "node scripts/validate-plugin-bundles.mjs",
"validate:fixtures": "node scripts/validate-fixture-metadata.mjs",
"validate:manifests": "node scripts/validate-release-manifests.mjs",
"validate:host-map": "node scripts/validate-host-command-map.mjs",
"validate:codex-adapter": "node scripts/validate-codex-adapter.mjs",
"validate:cc-x-recipes": "node scripts/validate-cc-x-recipes.mjs",
"check:review-drift": "node scripts/check-review-cli-drift.mjs",
"check:provider-paths": "node scripts/check-review-cli-drift.mjs",
"check:fixture-freshness": "node scripts/check-fixture-freshness.mjs",
"pack:codex": "VERSION=$(node -p \"require('./plugins/polycli-codex/.codex-plugin/plugin.json').version\") && mkdir -p dist && tar -czf dist/polycli-codex-$VERSION.tgz -C plugins polycli-codex",
"pack:opencode": "mkdir -p dist && npm pack ./plugins/polycli-opencode --pack-destination dist",
"pack:utils": "mkdir -p dist && npm pack ./packages/polycli-utils --pack-destination dist",
"pack:timing": "mkdir -p dist && npm pack ./packages/polycli-timing --pack-destination dist",
"release:check": "node scripts/check-release.mjs"
},
"devDependencies": {
"esbuild": "^0.28.1",
"zod": "^4.4.3"
}
}