-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "gstack-codex",
"version": "0.2.0",
"description": "Make Codex easy, deep, and fast with Garry Tan's gstack workflow.",
"keywords": [
"codex",
"openai",
"gstack",
"ai-agents",
"coding-agent",
"agent-workflow",
"agents-md",
"developer-tools"
],
"homepage": "https://github.com/phd-peter/gstack-codex#readme",
"bugs": {
"url": "https://github.com/phd-peter/gstack-codex/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phd-peter/gstack-codex.git"
},
"type": "module",
"bin": {
"gstack-codex": "bin/gstack-codex.js"
},
"files": [
"README.md",
"docs",
"bin",
"src",
"bundle/current"
],
"scripts": {
"bootstrap:upstream": "node ./scripts/bootstrap-upstream-gstack.mjs",
"build:bundle": "node ./scripts/build-release-artifacts.mjs",
"build:release": "node ./scripts/build-release-artifacts.mjs",
"pack:release": "node ./scripts/pack-release.mjs",
"prepack": "node ./scripts/build-release-artifacts.mjs",
"sync:upstream": "node ./scripts/sync-upstream.mjs --write",
"test": "bun test",
"init:global": "node ./bin/gstack-codex.js init --global",
"init:project": "node ./bin/gstack-codex.js init --project"
},
"engines": {
"node": ">=18.17.0",
"bun": ">=1.0.0"
},
"license": "MIT"
}