-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.39 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
61
62
63
64
65
{
"name": "@rlaope/loop",
"version": "0.1.0",
"description": "Safety-first Loop Engineering toolkit for coding agents.",
"type": "module",
"license": "MIT",
"private": false,
"author": "rlaope",
"repository": {
"type": "git",
"url": "git+https://github.com/rlaope/loop.git"
},
"bugs": {
"url": "https://github.com/rlaope/loop/issues"
},
"homepage": "https://github.com/rlaope/loop#readme",
"publishConfig": {
"access": "public"
},
"bin": {
"loop": "./bin/loop.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./package.json": "./package.json"
},
"files": [
"assets/",
"bin/",
"docs/",
"examples/",
"scripts/",
"skills/",
"src/",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"SECURITY.md",
".codex-plugin/"
],
"scripts": {
"lint": "node scripts/lint.mjs",
"perf:tui": "node scripts/perf-tui.mjs",
"test": "node --test",
"typecheck": "tsc --noEmit",
"verify:package": "npm pack --dry-run --json | node scripts/verify-package.mjs",
"verify": "npm run lint && npm run typecheck && npm test && npm run verify:package"
},
"keywords": [
"ai",
"agents",
"codex",
"loop-engineering",
"automation"
],
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.5.0"
}
}