-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "md-emoji-mcp",
"version": "0.1.0",
"description": "A Model Context Protocol server",
"private": true,
"type": "module",
"bin": {
"md-emoji-mcp": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"prepare-husky": "husky install",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"format": "prettier --write src"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"axios": "^1.8.4",
"cheerio": "^1.0.0",
"commander": "^10.0.0",
"express": "^4.18.2",
"glob": "^10.4.5"
},
"devDependencies": {
"@femm/prettier": "^1.1.0",
"@femm/verify-commit": "^1.0.1",
"@types/node": "^20.11.24",
"eslint-config-prettier": "^10.1.2",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "2.8.8",
"typescript": "^5.3.3"
},
"prettier": "@femm/prettier",
"lint-staged": {
"*.{js,jsx,tsx,vue,css,scss,less,md,json}": [
"prettier --write"
]
}
}