-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"name": "@openpresentation/opf-render",
"version": "0.0.2",
"description": "Deterministic local OPF renderer for SVG, PNG, and PDF output.",
"license": "MIT",
"type": "module",
"private": false,
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenPresentation/opf-render.git"
},
"bugs": {
"url": "https://github.com/OpenPresentation/opf-render/issues"
},
"homepage": "https://github.com/OpenPresentation/opf-render#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "node --check src/index.js && node --check scripts/build.mjs && node --check scripts/validate-package.mjs && node --check test/smoke.mjs && node --check test/golden.mjs",
"validate": "node scripts/validate-package.mjs",
"test": "npm run build && node test/smoke.mjs && node test/golden.mjs",
"test:golden": "npm run build && node test/golden.mjs",
"golden:update": "npm run build && node test/golden.mjs --update",
"prepack": "npm run build"
},
"dependencies": {
"@expo-google-fonts/roboto": "^0.4.3",
"@expo-google-fonts/roboto-mono": "^0.4.2",
"@openpresentation/opf": "^0.2.2",
"@resvg/resvg-js": "^2.6.2",
"pdf-lib": "^1.17.1"
}
}