-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.54 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.54 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": "@deploystack/satellite",
"version": "0.9.0",
"description": "DeployStack Satellite - MCP Server Management Service",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc && webpack --mode=production",
"build:dev": "tsc && webpack --mode=development",
"build:watch": "tsc && webpack --mode=development --watch",
"start": "node --env-file=.env dist/index.js",
"lint": "eslint --config eslint.config.ts 'src/**/*.ts' --fix",
"check:no-console": "node scripts/check-no-console.js",
"release": "release-it --config=.release-it.js"
},
"dependencies": {
"@fastify/http-proxy": "^11.3.0",
"@fastify/swagger": "^9.6.1",
"@fastify/swagger-ui": "^5.2.3",
"@modelcontextprotocol/sdk": "^1.22.0",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"fuse.js": "^7.1.0",
"gpt-tokenizer": "^3.4.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"uuid": "^13.0.0",
"zod": "^4.1.3"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@types/node": "^24.10.0",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.0",
"copy-webpack-plugin": "^13.0.1",
"eslint": "^9.37.0",
"node-loader": "^2.1.0",
"nodemon": "^3.1.11",
"release-it": "^19.0.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}