-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.45 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
36
37
38
39
40
41
{
"name": "daybreak",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "desktop/dist/main.js",
"description": "Daybreak - a Windows morning intent-setter you can't dismiss until you've wiped every commitment. $19 one-time.",
"workspaces": [
"packages/*",
"desktop",
"site"
],
"overrides": {
"next": {
"postcss": "8.5.15"
}
},
"scripts": {
"start": "npm run dev:desktop",
"build:core": "npm run build -w @daybreak/core",
"build:desktop": "npm run build -w @daybreak/desktop",
"build:site": "npm run build -w @daybreak/site",
"build": "npm run build:core && npm run build:desktop && npm run build:site",
"typecheck": "npm run build:core && npm run typecheck -w @daybreak/core && npm run typecheck -w @daybreak/desktop",
"test": "vitest run",
"lint": "npm run typecheck && npm run lint -w @daybreak/site",
"check": "npm run lint && npm run test && npm run build",
"verify:launch": "node scripts/verify-launch.mjs",
"verify:local-only": "node scripts/verify-local-only.mjs",
"verify:pages-health": "node scripts/verify-pages-health.mjs",
"verify:readiness": "node scripts/verify-readiness.mjs",
"verify:release": "node scripts/verify-release.mjs",
"dev:desktop": "npm run dev -w @daybreak/desktop",
"dev:site": "npm run dev -w @daybreak/site"
},
"devDependencies": {
"@electron/asar": "^3.4.1",
"typescript": "^5.6.3",
"vitest": "^4.1.9"
}
}