-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 971 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": "tiny-agent-harness",
"version": "0.1.0",
"private": true,
"description": "A small modular agentic coding harness using an OpenAI-compatible Chat Completions API.",
"engines": {
"node": ">=20"
},
"bin": {
"tiny-agent": "./start.js"
},
"scripts": {
"start": "node start.js",
"check": "find . -name '*.js' -not -path './node_modules/*' -not -path './.git/*' -not -path './.cursor/*' -print0 | xargs -0 -n1 node --check",
"lint": "eslint . && prettier --check --no-error-on-unmatched-pattern \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"",
"fix": "eslint . --fix && prettier --write --no-error-on-unmatched-pattern \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\""
},
"dependencies": {
"concolor": "^1.1.4",
"metautil": "^5.5.2",
"openai": "latest"
},
"devDependencies": {
"eslint": "^9.39.4",
"eslint-config-metarhia": "^9.1.9",
"metaskills": "^1.0.5",
"prettier": "^3.8.4"
}
}