-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 881 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
{
"name": "basemail",
"version": "0.1.0",
"private": true,
"description": "Email identity for AI Agents on Base chain",
"workspaces": [
"contracts",
"worker",
"web"
],
"scripts": {
"dev:worker": "npm run dev --workspace=worker",
"dev:web": "npm run dev --workspace=web",
"deploy:worker": "npm run deploy --workspace=worker",
"deploy:web": "npm run deploy --workspace=web",
"db:migrate": "npm run db:migrate --workspace=worker",
"test:contracts": "npm test --workspace=contracts",
"verify:site": "node web/scripts/verify-site.mjs",
"verify:openapi": "node worker/scripts/check-openapi.mjs https://api.basemail.ai/api/openapi.json"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.4",
"vite": "^6.4.1"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20260405.1",
"mime-db": "^1.54.0"
}
}