-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 952 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 952 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
{
"name": "@rookdaemon/daemon-engine",
"version": "0.1.0",
"description": "An agent-oriented runtime built to be maintained by its own inhabitants.",
"type": "module",
"main": "dist/index.js",
"bin": {
"daemon-engine": "./bin/daemon-engine.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:provider": "node bin/daemon-engine.js test-provider",
"lint": "eslint src/ test/",
"check": "tsc --noEmit && tsc --noEmit -p tsconfig.check.json"
},
"keywords": [
"agent",
"runtime",
"daemon"
],
"author": "Rook Daemon",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.2.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.73.0",
"js-yaml": "^4.1.1"
}
}