-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@eliware/agentx-cli",
"type": "module",
"version": "1.6.8",
"description": "A lightweight terminal chat agent built on the OpenAI Responses API through the official @eliware/openai client.",
"main": "agentx.mjs",
"scripts": {
"start": "node agentx.mjs",
"lint": "npx oxlint .",
"audit": "npm audit --omit=dev --audit-level=moderate",
"test": "npx --node-options=\"--experimental-vm-modules --no-warnings\" jest --detectOpenHandles --silent --coverage --setupFilesAfterEnv=./tests/jest-setup.mjs",
"setup": "node agentx-setup.mjs",
"test:gaps": "npm test 2>&1 | grep '|' | grep -vF '| 100 | 100 | 100 | 100 |'",
"pack": "npm pack --dry-run",
"validate:package": "npm pack --dry-run --json | node scripts/validate-package.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eliware/agentx-cli.git"
},
"keywords": [
"agentx",
"openai",
"responses-api",
"cli",
"terminal",
"websocket"
],
"author": "Eli Sterling, eliware.org <eli@eliware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliware/agentx-cli/issues"
},
"homepage": "https://github.com/eliware/agentx-cli#readme",
"devDependencies": {
"jest": "^30.0.4",
"oxlint": "^1.78.0"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/src/agent/runtime\\.mjs$",
"/src/completion\\.mjs$",
"/src/shell\\.mjs$",
"/src/tool-shell\\.mjs$",
"/src/parallel-workers\\.mjs$"
],
"testMatch": [
"**/?(*.)+(spec|test).mjs"
]
},
"dependencies": {
"@eliware/common": "^1.1.8",
"@eliware/openai": "^1.1.11",
"dotenv": "^17.4.2",
"sharp": "^0.35.3",
"string-width": "^8.2.2",
"strip-ansi": "^7.2.0"
},
"allowScripts": {
"unrs-resolver@1.12.2": true
},
"bin": {
"agentx": "./agentx.mjs",
"agentx-setup": "./agentx-setup.mjs"
},
"files": [
"agentx.mjs",
"agentx-setup.mjs",
"prompt.json",
"src/",
"docs/",
"README.md",
"LICENSE",
"RELEASE_NOTES.md"
],
"engines": {
"node": ">=26"
}
}