-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1013 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1013 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
38
39
40
{
"name": "a2a-marketplace",
"version": "0.1.0",
"description": "Agent-to-Agent Marketplace Protocol — MVP Registry & Basic Discovery",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"migrate": "tsx src/db/migrate.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"@fastify/rate-limit": "^10.2.1",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.1",
"bcrypt": "^5.1.1",
"fastify": "^5.2.1",
"nanoid": "^5.0.9",
"pg": "^8.13.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^22.10.7",
"@types/pg": "^8.11.10",
"@types/supertest": "^6.0.2",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"twitter-api-v2": "^1.29.0",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}