-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.53 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "run402-mcp",
"version": "1.43.0",
"description": "MCP server for Run402 — AI-native Postgres databases with REST API, auth, storage, and row-level security. Pay with x402 USDC micropayments.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"run402-mcp": "dist/index.js"
},
"files": [
"dist",
"core/dist",
"sdk/dist",
"sdk/core-dist",
"README.md"
],
"scripts": {
"build:core": "tsc -p core/tsconfig.json",
"build:sdk": "mkdir -p sdk/core-dist && cp core/dist/*.js sdk/core-dist/ && cp core/dist/*.d.ts sdk/core-dist/ && tsc -p sdk/tsconfig.json",
"build": "npm run build:core && npm run build:sdk && tsc && mkdir -p cli/core-dist cli/sdk/dist cli/sdk/core-dist && cp core/dist/*.js cli/core-dist/ && cp -R sdk/dist/. cli/sdk/dist/ && cp sdk/core-dist/*.js cli/sdk/core-dist/",
"start": "node dist/index.js",
"test:skill": "node --test --import tsx SKILL.test.ts",
"test:sync": "node --test --import tsx sync.test.ts",
"test": "node --experimental-test-module-mocks --test --import tsx SKILL.test.ts sync.test.ts core/src/**/*.test.ts sdk/src/**/*.test.ts src/**/*.test.ts && node --test cli-e2e.test.mjs cli-deploy-dispatcher.test.mjs cli-help.test.mjs",
"test:e2e": "node --test cli-e2e.test.mjs cli-deploy-dispatcher.test.mjs cli-help.test.mjs",
"test:help": "node --test cli-help.test.mjs",
"test:integration": "node --test --import tsx core/src/siwx-integration.integ.ts",
"test:integration:full": "node --test --import tsx cli-integration.test.ts",
"test:integration:mcp": "node --test --import tsx mcp-integration.test.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"postgres",
"database",
"ai",
"agent",
"run402",
"x402",
"supabase-alternative",
"backend-as-a-service"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kychee-com/run402.git"
},
"homepage": "https://run402.com",
"bugs": "https://github.com/kychee-com/run402/issues",
"author": "Kychee Technologies",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@noble/curves": "^2.0.1",
"@noble/hashes": "^2.0.1",
"undici": "^8.0.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@x402/evm": "^2.6.0",
"@x402/fetch": "^2.6.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"viem": "^2.47.4",
"yaml": "^2.8.2"
},
"license": "MIT"
}