-
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) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.35 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
{
"name": "who-read-me",
"version": "0.1.0",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build:shared && npm run build:api && npm run build:extension && npm run build:web",
"build:api": "npm run build --workspace @who-read-me/api",
"build:extension": "npm run build --workspace @who-read-me/extension",
"build:shared": "npm run build --workspace @who-read-me/shared",
"build:web": "npm run build --workspace @who-read-me/web",
"test": "npm run test:shared && npm run test:api && npm run test:extension",
"test:api": "npm run test --workspace @who-read-me/api",
"test:extension": "npm run test --workspace @who-read-me/extension",
"test:shared": "npm run test --workspace @who-read-me/shared",
"privacy:scan": "node scripts/privacy-scan.mjs",
"migrate:api": "node scripts/migrate-api.mjs",
"deploy:api": "node scripts/deploy-api.mjs",
"deploy:web": "npm run deploy --workspace @who-read-me/web",
"dev:api": "npm run dev --workspace @who-read-me/api",
"dev:web": "npm run dev --workspace @who-read-me/web"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260423.0",
"esbuild": "^0.25.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2",
"wrangler": "^4.13.2"
}
}