-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.03 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
{
"name": "hermes-paperclip-adapter",
"version": "0.3.0",
"description": "Paperclip adapter for Hermes Agent — run Hermes as a managed employee in a Paperclip company",
"type": "module",
"license": "MIT",
"author": "Nous Research",
"repository": {
"type": "git",
"url": "https://github.com/NousResearch/hermes-paperclip-adapter"
},
"keywords": [
"paperclip",
"hermes",
"hermes-agent",
"ai-agent",
"adapter",
"orchestration"
],
"exports": {
".": "./dist/index.js",
"./server": "./dist/server/index.js",
"./ui": "./dist/ui/index.js",
"./cli": "./dist/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@paperclipai/adapter-utils": "^2026.325.0",
"picocolors": "^1.1.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
}
}