-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "neuroloop",
"version": "0.1.2",
"author": "NeuroSkill team (https://neuroskill.com)",
"contributors": [
"Nataliya Kosmyna <nkosmyna@mit.edu>",
"Eugene Hauptmann <eugenehp@mit.edu>"
],
"repository": "https://github.com/NeuroSkill-com/neuroloop",
"homepage": "https://neurloop.io",
"license": "GPL-3.0-only",
"description": "NeuroLoop™ – EXG-aware coding agent — run `npx neuroloop` to start",
"type": "module",
"bin": {
"neuroloop": "dist/neuroloop.js"
},
"files": [
"dist",
"skills",
"METRICS.md",
"NEUROLOOP.md",
"README.md"
],
"piConfig": {
"name": "neuroloop",
"configDir": ".neuroloop"
},
"scripts": {
"dev": "npm run build && npm install . -g && neuroloop",
"build": "node build.mjs",
"build:watch": "node build.mjs --watch",
"start": "PI_PACKAGE_DIR=$(pwd)/pi-pkg npx tsx src/main.ts",
"postinstall": "patch-package || true",
"prepublishOnly": "node build.mjs"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "^0.64.0",
"@mariozechner/pi-tui": "^0.64.0",
"@sinclair/typebox": "^0.34.48",
"ws": "^8.0.0"
},
"devDependencies": {
"@mariozechner/pi-ai": "^0.64.0",
"@types/node": "^25.3.3",
"esbuild": "^0.27.3",
"patch-package": "^8.0.1",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20"
}
}