forked from TegoLabs/sorokeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.86 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"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",
"man",
"CHANGELOG.md",
"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)); }\" && npm run build:man",
"build:man": "tsx scripts/generate-man.ts",
"dev": "tsx src/index.ts",
"mcp": "tsx src/mcp/index.ts",
"lint": "eslint src/ tests/",
"check:test-locations": "node scripts/check-test-file-locations.mjs",
"test": "vitest run",
"mutation-test": "npx stryker run",
"test:e2e": "vitest run tests/e2e",
"test:watch": "vitest",
"docs:api": "typedoc --out docs-api src/lib.ts"
},
"keywords": [
"stellar",
"soroban",
"ttl",
"smart-contracts",
"devops",
"monitoring"
],
"author": "Abdulmalik Alayande",
"overrides": {
"glob": "11.1.0"
},
"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",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.221.0",
"@opentelemetry/resources": "^2.10.0",
"@opentelemetry/sdk-trace-base": "^2.10.0",
"@stellar/stellar-sdk": "^16.2.0",
"better-sqlite3": "^12.9.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"handlebars": "^4.7.9",
"hono": "^4.12.32",
"nodemailer": "^9.0.3",
"ora": "^9.4.0",
"pino": "^10.3.1",
"prom-client": "^15.1.3",
"yaml": "^2.8.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.2",
"@types/nodemailer": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^10.3.0",
"fast-check": "^4.9.0",
"parse-prometheus-text-format": "^1.1.1",
"pino-pretty": "^13.1.3",
"strip-ansi": "^7.2.0",
"tsx": "^4.21.0",
"typedoc": "^0.28.20",
"typescript": "^5.7.3",
"vitest": "^3.0.7"
}
}