-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 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
56
57
{
"name": "next-codex-workflow",
"version": "0.1.3",
"description": "Repo-local Codex workflow installer for existing Next.js repositories with planning artifacts, subagents, and command-style skills.",
"author": "bk-git-hub <bkprivate99@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/bk-git-hub/next-codex-workflow.git"
},
"homepage": "https://github.com/bk-git-hub/next-codex-workflow#readme",
"bugs": {
"url": "https://github.com/bk-git-hub/next-codex-workflow/issues"
},
"type": "module",
"bin": {
"next-codex-workflow": "dist/main.js"
},
"files": [
"dist",
"README.md",
"USER_JOURNEY.md",
"NOT_IMPLEMENTED_YET.md",
"vendor-skills"
],
"keywords": [
"codex",
"openai-codex",
"nextjs",
"next-js",
"workflow",
"subagents",
"skills",
"ai-coding",
"developer-tools",
"cli"
],
"scripts": {
"build": "tsup",
"check": "npm run typecheck && npm run test",
"prepublishOnly": "npm run check && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=18.18.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^24.6.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}