-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 874 Bytes
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
{
"name": "the-loop",
"version": "0.1.0",
"description": "An owned, composable agentic dev loop built from native Claude Code primitives — shipped as a plugin. Its first job is to build itself.",
"type": "module",
"private": true,
"author": "Jackson Atassi <jackson.atassi@outlook.com>",
"bin": {
"create-sample-repo": "./bin/create-sample-repo.js"
},
"scripts": {
"test": "node --test test/*.test.js test/oracle/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "the-loop check && eslint ."
},
"engines": {
"node": ">=22.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-n": "^18.2.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unicorn": "^70.0.0",
"globals": "^17.7.0"
}
}