-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 986 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 986 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
{
"name": "secid-service",
"version": "1.0.0",
"private": true,
"author": "Kurt Seifried, Cloud Security Alliance",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"build:registry": "tsx scripts/build-registry.ts",
"upload:registry": "tsx scripts/upload-registry-kv.ts",
"build:website": "GIT_COMMIT_SHA=$(git rev-parse --short=12 HEAD) && cd website && PUBLIC_COMMIT_SHA=$GIT_COMMIT_SHA npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"hono": "^4.7.0"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.12.19",
"@cloudflare/workers-types": "^4.20250214.0",
"@playwright/test": "^1.58.2",
"dotenv": "^17.3.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "~3.2.0",
"wrangler": "^4.0.0"
}
}