-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 787 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 787 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
{
"name": "acme",
"version": "1.0.0",
"description": "Parking booking ChatGPT App for ACME Corp",
"type": "module",
"main": "server/index.ts",
"scripts": {
"dev": "tsx server/index.ts",
"build:server": "tsc -p server/tsconfig.json",
"build:web": "npm --prefix web run build",
"test": "echo \"No tests configured yet\""
},
"keywords": [
"apps-sdk",
"chatgpt-app",
"openai",
"mcp-app",
"mcp"
],
"author": "Juliette Chevalier",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@sentry/node": "^10.12.0",
"@turf/distance": "^7.2.0",
"dotenv": "^16.4.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^24.3.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}