-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1003 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1003 Bytes
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
{
"name": "stability-mcp",
"packageManager": "yarn@4.9.1",
"private": true,
"workspaces": [
"libs/*",
"apps/*"
],
"scripts": {
"lint": "eslint '{apps,libs}/**/*.{ts,tsx}'",
"format": "prettier --write '{apps,libs}/**/*.{ts,tsx}'",
"build": "yarn workspaces foreach --all --topological --parallel run build",
"inspect": "npx @modelcontextprotocol/inspector",
"start": "yarn workspace @stability-mcp/server run start",
"stdio": "yarn workspace @stability-mcp/server run stdio",
"stdio:wallet": "yarn workspace @stability-mcp/server run stdio:wallet",
"stdio:contracts": "yarn workspace @stability-mcp/server run stdio:contracts",
"stdio:blockchain": "yarn workspace @stability-mcp/server run stdio:blockchain"
},
"devDependencies": {
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
}
}