forked from benelabs/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.83 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.83 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": "pulsar",
"version": "1.0.0",
"description": "MCP Server for Stellar/Soroban",
"repository": {
"type": "git",
"url": "git+https://github.com/GideonBature/pulsar.git"
},
"homepage": "https://github.com/GideonBature/pulsar#readme",
"type": "module",
"bin": {
"pulsar": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx --watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "RUN_INTEGRATION_TESTS=true vitest run tests/integration",
"prepublishOnly": "npm run build && npm test",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"mcp",
"stellar",
"soroban",
"rpc",
"blockchain"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.0",
"@types/pino": "^7.0.4",
"@typescript-eslint/eslint-plugin": "8.57.2",
"@typescript-eslint/parser": "8.57.2",
"@vitest/coverage-v8": "^4.1.1",
"eslint": "8.57.1",
"eslint-plugin-import": "2.32.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.3.3",
"vitest": "^4.1.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"@stellar/stellar-sdk": "^12.3.0",
"dotenv": "^16.3.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"zod": "^3.22.4"
}
}