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
55 lines (55 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.23 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
{
"name": "@vmprint/preview",
"version": "1.0.2",
"description": "Script-first browser preview controller for VMPrint. Renders document pages to caller-owned canvases and supports PDF/SVG export.",
"author": "cosmiciron",
"license": "Apache-2.0",
"keywords": [
"pdf",
"canvas",
"preview",
"svg",
"document",
"layout",
"typesetting",
"vmprint",
"browser"
],
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"!dist/**/*.map",
"LICENSE"
],
"scripts": {
"build": "npm run clean && node scripts/build.mjs",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@vmprint/context-canvas": "*",
"@vmprint/context-pdf-lite": "*",
"@vmprint/engine": "*",
"@vmprint/local-fonts": "*",
"@vmprint/web-fonts": "*"
},
"devDependencies": {
"@types/node": "^22.13.1",
"esbuild": "^0.25.10",
"rimraf": "^6.1.3",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
}
}