-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "pstack-for-codex",
"version": "0.2.0",
"private": true,
"description": "Verification entry point for the Codex-native pstack derivative",
"type": "module",
"scripts": {
"test": "npm run verify:release",
"test:offline": "node --test $(find tests -maxdepth 1 -name '*.test.mjs' ! -name 'installed-plugin-smoke.test.mjs' | sort)",
"test:bun": "bun test --cwd skills/poteto-mode/scripts orch watch-pr",
"typecheck": "bun run --cwd skills/poteto-mode/scripts typecheck",
"compatibility:check": "node scripts/generate-compatibility-report.mjs --check",
"hooks:install": "./scripts/install-git-hooks.sh",
"push:local-plugin": "./scripts/push-and-reinstall-local-plugin.sh",
"verify": "npm run verify:offline",
"verify:offline": "npm run test:offline && npm run test:bun && npm run typecheck && npm run compatibility:check",
"verify:release": "npm run verify:offline && npm run test:installed",
"test:installed": "PSTACK_RUN_INSTALLED_SMOKE=1 node --test tests/installed-plugin-smoke.test.mjs"
},
"engines": {
"node": ">=20"
}
}