-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "@loilo-inc/pdf-lib",
"scripts": {
"tsc": "tsc",
"fmt": "prettier --write ./src ./tests ./apps",
"fmtcheck": "prettier --check ./src ./tests ./apps",
"clean": "rm -rf dist",
"test": "vitest run --config vitest.config.ts",
"testcov": "vitest run --config vitest.config.ts --coverage",
"build": "tsc -p tsconfig.build.json",
"apps:node": "tsx apps/node/index.ts",
"apps:web": "node apps/web/dev-server.mjs",
"apps:web:tsc": "tsc -p apps/web/tsconfig.json",
"apps:web:build": "esbuild apps/web/src/test*.ts --bundle --format=iife --platform=browser --target=es2020 --sourcemap --outdir=apps/web/dist"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"@pdf-lib/standard-fonts": "^1.0.0",
"@pdf-lib/upng": "^1.0.1",
"pako": "^2.1.0"
},
"devDependencies": {
"esbuild": "^0.27.3",
"tsx": "^4.21.0",
"@pdf-lib/fontkit": "^1.1.0",
"@types/node": "^25.4.0",
"@types/pako": "^2.0.0",
"@vitest/coverage-v8": "^4.0.18",
"express": "^5.2.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"license": "MIT"
}