-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "dart-mcp-server",
"version": "0.1.10",
"description": "The Dart MCP server",
"license": "MIT",
"author": "Dart (software@itsdart.com)",
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/its-dart/dart-mcp-server",
"repository": {
"type": "git",
"url": "git+https://github.com/its-dart/dart-mcp-server.git"
},
"bugs": "https://app.itsdart.com/p/r/JFyPnhL9En61",
"type": "module",
"bin": {
"dart-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"start:mcp-inspector": "yarn run build && CLIENT_PORT=9001 SERVER_PORT=9000 npx @modelcontextprotocol/inspector node dist/index.js",
"prepare": "npm run build",
"build": "tsc && shx chmod +x dist/*.js",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write . --list-different",
"release": "release-it"
},
"dependencies": {
"@modelcontextprotocol/sdk": "~1.5",
"dart-tools": "~0.3",
"dotenv": "~16.4"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "0.7.0",
"@types/node": "22.13.13",
"prettier": "3.4.2",
"release-it": "17.11.0",
"shx": "0.3.4",
"typescript": "5.7.3"
},
"keywords": [
"dart",
"projectmanagement",
"taskmanagement"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}