-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
46
47
48
49
50
51
52
53
54
55
{
"name": "cstack",
"version": "0.17.27",
"private": true,
"type": "module",
"description": "Workflow wrapper around Codex CLI",
"homepage": "https://github.com/ganesh47/cstack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ganesh47/cstack.git"
},
"bugs": {
"url": "https://github.com/ganesh47/cstack/issues"
},
"keywords": [
"codex",
"cli",
"workflow",
"agent",
"release"
],
"bin": {
"cstack": "./bin/cstack.js"
},
"files": [
"bin/",
"dist/",
"README.md"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.build.json",
"ci:e2e": "node scripts/run-ci-e2e.mjs",
"clean": "rm -rf dist",
"dev": "tsx src/cli.ts",
"prepack": "npm run build",
"program:run": "node scripts/run-self-improvement-program.mjs",
"smoke:packaged": "node scripts/run-packaging-smoke.mjs",
"smoke:live": "node scripts/run-live-codex-smoke.mjs",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@iarna/toml": "^2.2.5"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsx": "^4.20.3",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"packageManager": "npm@11.7.0"
}