forked from anthrax63/mupdf-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 KB
/
package.json
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": "mupdf-js",
"version": "1.1.1",
"description": "MuPDF compiled to WebAssembly",
"main": "dist/index.js",
"repository": "https://github.com/anthrax63/mupdf-js",
"files": [
"dist"
],
"scripts": {
"build": "yarn build:prep && yarn build:wasm && yarn build:tsc && yarn build:cp",
"build:prep": "ts-node ./bin/prep.ts",
"build:wasm": "ts-node ./bin/build.ts",
"build:tsc": "tsc -p tsconfig.json",
"build:cp": "cp ./src/libmupdf.d.ts ./dist",
"build:examples": "ts-node ./bin/build-examples.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"pdf",
"mupdf",
"wasm",
"webassembly"
],
"author": "[email protected]",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@types/dockerode": "^3.3.14",
"@types/emscripten": "^1.39.4",
"@types/jest": "^29.0.3",
"@types/needle": "^3.2.0",
"@types/node": "^18.11.14",
"@types/rimraf": "^3.0.0",
"change-case": "^4.1.2",
"dockerode": "^3.3.4",
"jest": "^29.0.3",
"needle": "^3.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}