-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.63 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
{
"name": "outerloop",
"private": true,
"type": "module",
"description": "Own the Outer Loop. Evidence → Verdict → Answerability. At industrial scale.",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"outerloop": "node packages/cli/dist/cli.js",
"demo": "bash scripts/demo-phase1.sh",
"demo:phase2": "bash scripts/demo-phase2.sh",
"demo:phase3": "bash scripts/demo-phase3.sh",
"demo:v2": "bash scripts/demo-v2.sh",
"routine": "bash scripts/daily-routine.sh",
"routine:ship": "bash scripts/daily-routine.sh --ship",
"changeset": "changeset",
"version-packages": "changeset version",
"version:ci": "changeset version && pnpm install --frozen-lockfile",
"release": "pnpm build && changeset publish",
"smoke": "bash scripts/smoke-test-published.sh",
"contributors:update": "bash scripts/update-contributors.sh"
},
"keywords": [
"outerloop",
"loop-engineering",
"agentic-engineering",
"evidence",
"verdict",
"answerability",
"governance"
],
"author": "Cobus Greyling",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cobusgreyling/outerloop.git"
},
"homepage": "https://github.com/cobusgreyling/outerloop#readme",
"bugs": {
"url": "https://github.com/cobusgreyling/outerloop/issues"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@10.31.0",
"devDependencies": {
"@changesets/cli": "^2.31.1",
"turbo": "^2.10.5",
"typescript": "^7.0.2"
}
}