-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
{
"name": "hono-a2a-server",
"version": "0.1.1",
"description": "A modern A2A Protocol V2 server implementation using Hono",
"homepage": "https://github.com/iamarcel/a2a-server",
"repository": "github:iamarcel/a2a-server",
"keywords": [
"hono",
"a2a",
"agent",
"communication",
"server",
"typescript"
],
"author": "Marcel Samyn",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"dev": "tsx watch src/example.ts",
"build": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.prod.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@hono/node-server": "^1.14.1",
"hono": "^4.7.6"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20.11.17",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"tsx": "^4.7.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.1"
},
"publishConfig": {
"access": "public"
}
}