-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "@kind-ling/igniter",
"version": "0.1.0",
"description": "x402 + MCP + A2A scaffolding for any agent service. Ship in 5 minutes.",
"author": "Permanent Upper Class",
"license": "MIT",
"homepage": "https://github.com/Kind-ling/igniter",
"repository": {
"type": "git",
"url": "https://github.com/Kind-ling/igniter.git"
},
"type": "module",
"main": "./dist/packages/express/src/index.js",
"exports": {
".": "./dist/packages/express/src/index.js",
"./express": "./dist/packages/express/src/index.js",
"./generators": "./dist/generators/src/index.js",
"./generators/a2a": "./dist/generators/src/a2a.js",
"./generators/mcp": "./dist/generators/src/mcp.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"build": "tsc",
"prepublishOnly": "npm run typecheck && npm test && npm run build"
},
"peerDependencies": {
"express": "^4.18.0"
},
"peerDependenciesMeta": {
"express": { "optional": false }
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"typescript": "^5.3.0",
"vitest": "^2.1.0",
"express": "^4.18.2",
"supertest": "^6.3.4",
"@types/supertest": "^6.0.2"
}
}