-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "sasp-mcp-server",
"version": "0.1.0",
"description": "Vibe-coded MCP server for AI agents who need to learn to share. Because even AIs need a 'do not disturb' sign.",
"type": "module",
"main": "dist/index.js",
"bin": {
"sasp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch server/src/index.ts",
"start": "node dist/index.js",
"demo": "npm run build && node dist/client-demo/cli.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"lint": "eslint server/src --ext .ts"
},
"keywords": [
"mcp",
"yjs",
"edit-awareness",
"coding-agents",
"collaboration"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"yjs": "^13.6.19",
"y-protocols": "^1.0.6",
"y-websocket": "^2.0.4",
"ws": "^8.18.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@types/jest": "^29.5.14",
"@types/ws": "^8.5.13",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}