-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 835 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 835 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
29
30
31
32
33
34
35
{
"name": "paperdebugger-mcp-server",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "Junyi Hou",
"type": "commonjs",
"main": "app.ts",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"start": "ts-node src/app.ts",
"build": "tsc && cp -r src/templates dist/",
"serve": "node dist/app.js"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.24",
"@types/nunjucks": "^3.2.6",
"@types/supertest": "^6.0.3",
"jest": "^29.7.0",
"supertest": "^7.1.1",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"dotenv": "^16.5.0",
"express": "^5.1.0",
"nunjucks": "^3.2.4",
"openai": "^4.103.0",
"zod": "^3.25.36"
}
}