-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
85 lines (85 loc) · 2.53 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
83
84
85
{
"name": "atlas-mcp-server",
"version": "1.5.3",
"description": "A Model Context Protocol server that enables LLMs to manage complex task hierarchies with dependency tracking, status management, and rich metadata support. Provides ACID-compliant storage with caching and batch processing capabilities.",
"type": "module",
"bin": {
"atlas-mcp-server": "./build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"prepare": "node scripts/postinstall.js",
"postinstall": "husky",
"build": "tsc && node scripts/set-build-permissions.js",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prestart": "node scripts/prestart.js",
"start": "node --expose-gc build/index.js",
"dev": "concurrently \"npm run watch\" \"npm run start\"",
"tree": "node scripts/generate-tree.js",
"clean": "rimraf build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyanheads/atlas-mcp-server.git"
},
"author": "Casey Hand @cyanheads",
"bugs": {
"url": "https://github.com/cyanheads/atlas-mcp-server/issues"
},
"homepage": "https://caseyjhand.com",
"main": "./build/index.js",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.1.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.5",
"@types/sqlite3": "^3.1.11",
"@types/uuid": "^10.0.0",
"better-sqlite3": "^11.7.2",
"concurrently": "^9.1.2",
"detect-libc": "^2.0.3",
"dotenv": "^16.4.7",
"minimist": "^1.2.8",
"nanoid": "^5.0.9",
"nopt": "^8.0.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"typescript": "^5.7.2",
"uuid": "^11.0.4",
"winston": "^3.17.0",
"zod": "^3.24.1"
},
"lint-staged": {
"!(scripts)/**/*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"!(scripts)/**/*.{json,md}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript-eslint": "^8.19.0"
}
}