-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.09 KB
/
package.json
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
{
"name": "nostr-mcp",
"version": "0.0.15",
"description": "A Model Context Protocol server for interacting with Nostr, enabling posting notes and more",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"bin": {
"nostr-mcp": "./build/cli.js"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
}
},
"files": [
"build",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"start": "node build/cli.js",
"dev": "tsx watch src/cli.ts",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts --cache",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"clean": "rimraf build coverage .eslintcache",
"prebuild": "npm run clean",
"prepare": "husky install"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"server",
"nostr",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"@nostr-dev-kit/ndk": "^2.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"husky": "^9.1.7",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}