-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "little-coder",
"version": "1.1.0",
"description": "A pi-based coding agent optimized for small local language models. Reproduces the whitepaper's scaffold-model-fit adaptations as pi extensions.",
"homepage": "https://github.com/itayinbarr/little-coder",
"repository": {
"type": "git",
"url": "git+https://github.com/itayinbarr/little-coder.git"
},
"license": "Apache-2.0",
"author": "Itay Inbar",
"type": "module",
"bin": {
"little-coder": "bin/little-coder.mjs"
},
"engines": {
"node": ">=20.6.0"
},
"files": [
"bin/",
"AGENTS.md",
"skills/",
".pi/extensions/",
".pi/settings.json",
"models.json",
"LICENSE",
"NOTICE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"pi": "pi",
"test": "vitest run",
"test:py": "python3 -m pytest benchmarks/test_rpc_client.py -q",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "^0.68.1",
"@sinclair/typebox": "^0.34.49",
"playwright": "^1.59.1"
},
"devDependencies": {
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}