campus-security-mcp 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "campus-security-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "校园安防助手 MCP 服务器",
|
|
5
5
|
"main": "bin/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,11 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|
|
11
11
|
"start": "node bin/index.js",
|
|
12
|
-
"dev": "ts-node src/index.ts"
|
|
12
|
+
"dev": "ts-node src/index.ts",
|
|
13
|
+
"test": "node test.js",
|
|
14
|
+
"lint": "eslint src",
|
|
15
|
+
"prepare": "npm run build",
|
|
16
|
+
"publish": "npm run build && npm publish"
|
|
13
17
|
},
|
|
14
18
|
"dependencies": {
|
|
15
19
|
"zod": "^3.22.4"
|
|
@@ -24,6 +28,6 @@
|
|
|
24
28
|
"security",
|
|
25
29
|
"typescript"
|
|
26
30
|
],
|
|
27
|
-
"author": "
|
|
31
|
+
"author": "Yasenagat",
|
|
28
32
|
"license": "MIT"
|
|
29
33
|
}
|