-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.9 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
60
61
62
63
64
65
66
{
"name": "betteroffice",
"private": true,
"version": "0.0.1",
"type": "module",
"workspaces": [
"apps/*",
"bindings/*",
"packages/*",
"crates"
],
"overrides": {
"@hono/node-server": "^2.0.10",
"esbuild": "^0.28.1",
"fast-uri": "^3.1.6",
"postcss": "^8.5.23",
"sharp": "^0.35.0",
"brace-expansion": "^5.0.9",
"minimatch": "^10.2.5",
"nanoid": "^3.3.17",
"undici": "^7.29.0",
"ip-address": "^10.4.0",
"browserslist": "^4.28.7"
},
"scripts": {
"dev": "bun run --filter './apps/web' dev",
"dev:docs": "bun run --filter './apps/docs' dev",
"dev:demo": "bun run --filter './apps/demo' dev",
"pretest": "bun run build:pptx-wasm && bun run build:fonts",
"build:pptx-wasm": "bun scripts/build-pptx-wasm.ts",
"build:pptx": "bun run --filter '@betteroffice/pptx-i18n' build && bun run --filter '@betteroffice/pptx' build && bun run --filter '@betteroffice/pptx-react' build",
"build:xlsx-wasm": "bun scripts/build-xlsx-wasm.ts",
"build:xlsx": "bun run --filter '@betteroffice/xlsx-i18n' build && bun run --filter '@betteroffice/xlsx' build && bun run --filter '@betteroffice/xlsx-react' build",
"build:fonts": "bun run --filter '@betteroffice/fonts' build",
"build:packages": "bun run build:fonts && bun run build:xlsx && bun run build:docx && bun run build:pptx",
"deploy:docs": "bun run --filter './apps/docs' deploy",
"deploy:demo": "bun run --filter './apps/demo' deploy",
"build": "bun run --filter './apps/web' build",
"test": "bun run build:xlsx-wasm && bun run build:docx-wasm && bun test packages apps/web/app apps/demo/lib scripts",
"pretypecheck:packages": "bun run build:fonts",
"typecheck:packages": "bun run --filter './packages/*' typecheck",
"pretypecheck": "bun run build:packages",
"typecheck": "bun run --filter '*' typecheck",
"rust:check": "cargo fmt --check && cargo clippy --all-targets -- -D warnings && cargo test",
"changeset": "changeset",
"version-packages": "node scripts/version-packages.mjs",
"publish:crates": "node scripts/publish-crates.mjs",
"publish:packages": "bun run publish:crates && bun scripts/rewrite-workspace-deps.ts && changeset publish",
"release": "bun run build:packages && bun run publish:packages",
"preview": "bun run --filter './apps/web' preview",
"deploy": "bun run --filter './apps/web' deploy",
"cf-typegen": "bun run --filter './apps/web' cf-typegen",
"build:docx-wasm": "bun scripts/build-docx-wasm.ts",
"build:docx": "bun run --filter '@betteroffice/docx-i18n' build && bun run --filter '@betteroffice/docx' build && bun run --filter '@betteroffice/docx-react' build"
},
"license": "Apache-2.0",
"homepage": "https://betteroffice.dev",
"repository": {
"type": "git",
"url": "https://github.com/openooxml/betteroffice.git"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"jszip": "3.10.1"
}
}