-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 897 Bytes
/
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
{
"name": "@ssut/remote-mcp",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssut/Remote-MCP.git"
},
"author": {
"name": "Suhun Han",
"email": "[email protected]",
"url": "https://ssut.me"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"copy-readme": "cp README.md packages/server/README.md && cp README.md packages/client/README.md",
"publish-packages": "pnpm run copy-readme && changeset version && changeset publish"
},
"workspaces": ["packages/*"],
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.2",
"biome": "^0.3.3",
"turbo": "^2.3.3"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"packageManager": "[email protected]"
}