-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 937 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "openmangos",
"version": "0.11.2",
"description": "Adaptive terminal framework — senses your environment, adapts to the problem, orchestrates any AI backend",
"type": "module",
"bin": {
"om": "./dist/cli.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "npm run build && node --import tsx --test src/test/*.test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"terminal",
"ai",
"agent",
"cli",
"adaptive",
"openmangos"
],
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.0",
"picocolors": "^1.1.1",
"ws": "^8.21.0",
"yaml": "^2.8.0"
},
"devDependencies": {
"@types/node": "^22.15.0",
"@types/ws": "^8.18.1",
"tsup": "^8.5.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
},
"files": [
"dist"
]
}