forked from cosmiciron/vmprint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 2.24 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
{
"name": "vmprint-workspace",
"version": "1.5.0",
"description": "Deterministic typesetting engine for the programmable web. Pure-JS, zero-browser document composition with bit-perfect PDF output.",
"author": "cosmiciron",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/cosmiciron/vmprint.git"
},
"bugs": {
"url": "https://github.com/cosmiciron/vmprint/issues"
},
"homepage": "https://github.com/cosmiciron/vmprint",
"workspaces": [
"contracts",
"engine",
"cli",
"pressrun",
"preview",
"contexts/*",
"font-managers/*",
"transmuters/*"
],
"scripts": {
"clean": "npm run clean --workspaces --if-present",
"build": "npm run build --workspace=@vmprint/contracts && npm run build --workspace=@vmprint/markdown-core && npm run build --workspace=@vmprint/standard-fonts && npm run build --workspace=@vmprint/local-fonts && npm run build --workspace=@vmprint/web-fonts && npm run build --workspace=@vmprint/context-canvas && npm run build --workspace=@vmprint/context-pdf && npm run build --workspace=@vmprint/context-pdf-lite && npm run build --workspace=@vmprint/engine && npm run build --workspace=@vmprint/preview && npm run build --workspace=@vmprint/cli && npm run build --workspace=@vmprint/mkd-mkd --workspace=@vmprint/mkd-academic --workspace=@vmprint/mkd-literature --workspace=@vmprint/mkd-manuscript --workspace=@vmprint/mkd-screenplay --workspace=@vmprint/mkd-zh-manuscript && npm run build --workspace=@vmprint/dev-cli --workspace=@vmprint/transmuter-dev",
"release:build": "npm run build",
"sync:shared-engine": "node scripts/sync-shared-engine.mjs",
"sync:shared-engine:check": "node scripts/sync-shared-engine.mjs --check",
"measure:server": "npm run measure:server --workspace=engine",
"test": "npm run test --prefix engine && npm run test:packaged-integration",
"test:packaged-integration": "npm run build && node scripts/test-packaged-vmprint-integration.mjs",
"pressrun": "tsx pressrun/src/index.ts"
},
"devDependencies": {
"@types/node": "^25.3.2",
"@vmprint/context-pdf-lite": "^1.0.2",
"@vmprint/standard-fonts": "latest",
"tsx": "^4.21.0"
},
"overrides": {
"typescript": "~5.7.3"
}
}