forked from kmjones1979/ampersend-hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 867 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 867 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
{
"name": "@ampersend/hermes",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ampersend-hermes-bootstrap": "./dist/bootstrap-cli.js",
"ampersend-hermes-setup": "./dist/setup.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"bootstrap": "tsx src/bootstrap-cli.ts",
"bootstrap:start": "tsx src/bootstrap-cli.ts start",
"bootstrap:finish": "tsx src/bootstrap-cli.ts finish",
"setup": "tsx src/setup.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@x402/fetch": "^2.5.0",
"@ampersend_ai/ampersend-sdk": "^0.0.16",
"yaml": "^2.6.0",
"zod": "^3.24.0"
},
"devDependencies": {
"typescript": "^5.4.0",
"vitest": "^1.4.0",
"tsx": "^4.0.0",
"@types/node": "^20.0.0"
}
}