-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.63 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@teamsparkai/tsinterceptor",
"version": "1.0.3",
"description": "TeamSpark TsInterceptor - MCP interceptor policy engine",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"interceptor": "./dist/interceptor"
},
"repository": {
"type": "git",
"url": "https://github.com/TeamSparkAI/tsinterceptor.git"
},
"author": "TeamSpark, LLC <support@teamspark.ai>",
"license": "MIT",
"keywords": [
"ai",
"agent",
"mcp",
"tools",
"security",
"policy",
"teamspark"
],
"bugs": {
"url": "https://github.com/TeamSparkAI/tsinterceptor/issues"
},
"homepage": "https://github.com/TeamSparkAI/tsinterceptor#readme",
"scripts": {
"prepack": "npm run build",
"build": "node scripts/build.js",
"build:next": "next build",
"build:bundle": "esbuild server.ts --bundle --platform=node --target=node20 --outfile=dist/server.js --external:next --external:argon2 --external:@ext-modelcontextprotocol/interceptors --external:fdir --external:http-status-codes --external:jsonc-parser --external:jsonwebtoken --external:loglevel --external:react --external:react-dom --external:recharts --external:sqlite --external:sqlite3 --external:swagger-ui-react --external:tailwindcss --external:winston --external:winston-daily-rotate-file --external:ws --external:yaml --main-fields=module,main --resolve-extensions=.js,.ts,.json",
"build:prod": "npm run build:next && npm run build:bundle",
"start": "node dist/server.js",
"start:prod": "node dist/server.js",
"start:dev": "npm run build:next && npx tsx server.ts -- --port 3000",
"start:server": "./dist/interceptor",
"migrate": "tsx lib/models/sqlite/runMigration.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "jest --config jest.e2e.config.js",
"load-sample-data": "tsx scripts/load-sample-data/load.ts",
"clean": "tsx scripts/clean.ts"
},
"files": [
"dist/"
],
"dependencies": {
"@ext-modelcontextprotocol/interceptors": "file:../experimental-ext-interceptors/typescript/sdk",
"@modelcontextprotocol/sdk": "^1.29.0",
"argon2": "^0.41.0",
"dotenv": "^16.4.5",
"esbuild": "^0.20.0",
"fdir": "^6.4.6",
"http-status-codes": "^2.3.0",
"jsonc-parser": "^3.3.1",
"jsonwebtoken": "^9.0.2",
"loglevel": "^1.9.2",
"nanoid": "^5.0.0",
"next": "^14.2.29",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.3",
"sharp": "^0.33.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"swagger-ui-react": "^5.22.0",
"tailwindcss": "^3.4.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.2",
"yaml": "^2.4.0"
},
"devDependencies": {
"@octokit/rest": "^22.0.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.9",
"@types/loglevel": "^1.5.4",
"@types/node": "^20.17.54",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/sqlite3": "^3.1.11",
"@types/swagger-ui-react": "^5.18.0",
"@types/winston": "^2.4.4",
"@types/ws": "^8.18.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json5": "^2.2.3",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"overrides": {
"@modelcontextprotocol/sdk": "$@modelcontextprotocol/sdk",
"@ext-modelcontextprotocol/interceptors": {
"@modelcontextprotocol/sdk": "$@modelcontextprotocol/sdk"
}
}
}