-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.2 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.2 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
75
76
77
78
{
"name": "regen-compute",
"version": "0.3.4",
"description": "Regenerative AI — fund verified ecological regeneration from your AI sessions via Regen Network. Estimate your footprint, browse carbon and biodiversity credits, and retire them on-chain via credit card.",
"type": "module",
"main": "dist/index.js",
"bin": {
"regen-compute": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && cp src/server/openapi.json dist/server/openapi.json && node -e \"const f='dist/index.js';const c=require('fs').readFileSync(f,'utf8');if(!c.startsWith('#!'))require('fs').writeFileSync(f,'#!/usr/bin/env node\\n'+c)\"",
"dev": "tsx watch src/index.ts",
"serve": "tsx watch src/index.ts serve",
"start": "node dist/index.js",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"regen-network",
"ecological-credits",
"ecocredits",
"carbon-credits",
"biodiversity-credits",
"regenerative-ai",
"regen-compute",
"ai-compute",
"sustainability",
"climate",
"regeneration",
"claude",
"claude-code",
"cursor"
],
"author": "Regen Network Development, PBC",
"license": "Apache-2.0",
"homepage": "https://github.com/regen-network/regen-compute#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/regen-network/regen-compute.git"
},
"bugs": {
"url": "https://github.com/regen-network/regen-compute/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@modelcontextprotocol/sdk": "^1.0.0",
"@regen-network/api": "^1.0.0-alpha8",
"better-sqlite3": "^12.6.2",
"ethers": "^6.16.0",
"express": "^5.2.1",
"helmet": "^8.1.0",
"osmojs": "^16.15.0",
"stripe": "^20.3.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"vitest": "^4.0.18"
}
}