-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.88 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "flaremo",
"version": "0.3.0",
"private": true,
"type": "module",
"packageManager": "pnpm@11.7.0",
"scripts": {
"dev": "pnpm --filter @flaremo/web build && pnpm --filter @flaremo/worker dev",
"dev:web": "pnpm --filter @flaremo/web dev",
"dev:worker": "pnpm --filter @flaremo/worker dev",
"build": "pnpm -r build",
"check": "pnpm -r check",
"lint": "biome check AGENTS.md CHANGELOG.md CODE_OF_CONDUCT.md CONTRIBUTING.md README.md README.en.md ROADMAP.md SECURITY.md SUPPORT.md llms.txt package.json tsconfig.json tsconfig.base.json vitest.config.ts playwright.config.ts drizzle.config.ts wrangler.jsonc .github docs scripts apps packages tests",
"format": "pnpm lint --write",
"format:check": "biome ci AGENTS.md CHANGELOG.md CODE_OF_CONDUCT.md CONTRIBUTING.md README.md README.en.md ROADMAP.md SECURITY.md SUPPORT.md llms.txt package.json tsconfig.json tsconfig.base.json vitest.config.ts playwright.config.ts drizzle.config.ts wrangler.jsonc .github docs scripts apps packages tests",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"test:e2e": "playwright test",
"verify": "node ./scripts/preflight.mjs",
"release": "node ./scripts/release.mjs",
"backup:drill": "node ./scripts/backup-drill.mjs",
"backup:drill:remote": "node ./scripts/remote-restore-drill.mjs",
"screenshots": "node ./scripts/capture-screenshots.mjs",
"db:generate": "drizzle-kit generate",
"migrate:local": "wrangler d1 migrations apply DB --local",
"migrate:remote": "wrangler d1 migrations apply DB --remote",
"deploy:dry-run": "pnpm --filter @flaremo/web build && wrangler deploy --config ./wrangler.jsonc --dry-run",
"deploy": "pnpm --filter @flaremo/web build && pnpm migrate:remote && pnpm --filter @flaremo/worker deploy"
},
"cloudflare": {
"bindings": {
"DB": {
"description": "Cloudflare D1 database used as the source of truth for memos, users, relations, shares, settings, and attachment metadata."
},
"ATTACHMENTS": {
"description": "Cloudflare R2 bucket used for attachment binaries, export bundles, and other object files."
},
"FLAREMO_SINGLE_USER_EMAIL": {
"description": "Owner email used by the single-user runtime model."
},
"FLAREMO_SINGLE_USER_NAME": {
"description": "Owner display name used by the single-user runtime model."
},
"FLAREMO_DEPLOY_REPOSITORY": {
"description": "GitHub repository created for this deployment, in owner/repository form. FlareMo uses it only to link the owner to the repository's update workflow."
}
}
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@cloudflare/workers-types": "5.20260708.1",
"@playwright/test": "^1.61.1",
"drizzle-kit": "^0.31.8",
"miniflare": "^4.20260722.0",
"typescript": "^5.9.3",
"vitest": "^4.0.0",
"wrangler": "^4.114.0"
}
}