-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@tuel/code-oz",
"version": "0.21.1-alpha.0",
"description": "CI-style gates for AI coding agents — local-first governed delivery loop",
"type": "module",
"bin": {
"code-oz": "npm-wrapper/index.cjs"
},
"scripts": {
"test": "bun test ./tests",
"test:watch": "bun test ./tests --watch",
"dev": "bun run src/cli.ts",
"build:binary": "bun build --compile --target=bun src/cli.ts --outfile dist/code-oz",
"build:binaries": "bun run scripts/build-binaries.ts",
"smoke": "bun run scripts/smoke-test.ts",
"skills:render": "bun run plugins/code-oz-discipline/scripts/render-skills.ts",
"skills:check": "bun run plugins/code-oz-discipline/scripts/render-skills.ts --check",
"typecheck": "tsc --noEmit",
"eval:repo_context": "bun run scripts/eval-repo-context.ts",
"bench:agent-gate": "bun run src/cli.ts bench agent-gate",
"demo:todo-cli": "bun run scripts/demo/01-todo-cli/run-demo.ts",
"demo:failure-gates": "bun run scripts/demo/02-failure-gates/run-demo.ts"
},
"engines": {
"node": ">=18",
"bun": ">=1.3.0"
},
"license": "MIT",
"author": "Omer Akben (Ozzy)",
"repository": {
"type": "git",
"url": "git+https://github.com/omerakben/code-oz.git"
},
"homepage": "https://github.com/omerakben/code-oz",
"bugs": "https://github.com/omerakben/code-oz/issues",
"keywords": [
"ai",
"coding-agent",
"cli",
"sdlc",
"devtools",
"agentic-ai",
"claude-code",
"codex",
"typescript",
"open-source"
],
"files": [
"npm-wrapper/",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/bun": "^1.3.13",
"typescript": "^5.9.3"
},
"dependencies": {
"yaml": "^2.6.1"
}
}