forked from AbdulmalikAlayande/sorokeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.05 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
{
"name": "sorokeep",
"version": "1.0.0",
"description": "The missing operations layer for deployed Soroban smart contracts",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/lib.js",
"types": "./dist/lib.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"bin": {
"sorokeep": "dist/index.js",
"sorokeep-mcp": "dist/mcp/index.js"
},
"scripts": {
"build": "tsc && node -e \"const fs = require('fs'); fs.copyFileSync('src/db/schema.sql', 'dist/db/schema.sql'); const srcDir = 'src/db/migrations'; const destDir = 'dist/db/migrations'; if (fs.existsSync(srcDir)) { fs.mkdirSync(destDir, { recursive: true }); fs.readdirSync(srcDir).forEach(f => fs.copyFileSync(srcDir + '/' + f, destDir + '/' + f)); }\"",
"dev": "tsx src/index.ts",
"mcp": "tsx src/mcp/index.ts",
"lint": "eslint src/ tests/",
"test": "vitest run",
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest"
},
"keywords": [
"stellar",
"soroban",
"ttl",
"smart-contracts",
"devops",
"monitoring"
],
"author": "Abdulmalik Alayande",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/AbdulmalikAlayande/sorokeep.git"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.1075.0",
"@aws-sdk/credential-providers": "^3.1075.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@stellar/stellar-sdk": "^16.0.1",
"better-sqlite3": "^12.9.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"handlebars": "^4.7.9",
"ora": "^9.4.0",
"pino": "^10.3.1",
"yaml": "^2.8.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.2",
"pino-pretty": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^10.3.0",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"vitest": "^3.0.7"
}
}