-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.36 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
{
"name": "tinycode",
"version": "1.0.0",
"description": "A minimal but complete Coding Agent Harness — learn how coding agents work by reading one",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22.19"
},
"bin": {
"tinycode": "./dist/cli/index.js"
},
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@earendil-works/pi-agent-core": "^0.84.3",
"@earendil-works/pi-ai": "^0.84.3",
"@earendil-works/pi-tui": "^0.84.3",
"@modelcontextprotocol/sdk": "^1.30.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.0.0",
"eslint": "^9.30.0",
"node-pty": "^1.1.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.35.0",
"vitest": "^3.2.0"
},
"allowScripts": {
"esbuild@0.28.2": true,
"node-pty@1.1.0": true
},
"keywords": [
"ai",
"agent",
"coding-agent",
"cli",
"llm",
"tui",
"mcp",
"education"
],
"repository": {
"type": "git",
"url": "git+https://github.com/helsome/tinycode.git"
},
"bugs": {
"url": "https://github.com/helsome/tinycode/issues"
},
"homepage": "https://github.com/helsome/tinycode#readme"
}