-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "pagedjs-cli",
"version": "0.4.3",
"author": "Fred Chasen",
"license": "MIT",
"homepage": "https://pagedjs.org",
"repository": {
"type": "git",
"url": "https://github.com/pagedjs/pagedjs.git"
},
"type": "module",
"main": "./src/index.js",
"exports": {
"import": "./src/index.js",
"require": "./src/index.js",
"default": "./src/index.js"
},
"bin": "./src/cli.js",
"scripts": {
"start": "./src/cli.js",
"build": "rollup -c",
"lint": "eslint src",
"test": "npm run lint",
"prepare": "npm run build"
},
"dependencies": {
"commander": "^11.1.0",
"express": "^4.18.2",
"html-entities": "^2.4.0",
"katex": "^0.16.9",
"lodash": "^4.17.21",
"mathjax": "^3.2.2",
"node-fetch": "^3.3.2",
"ora": "^8.0.1",
"pagedjs": "^0.4.3",
"pdf-lib": "1.17.1",
"puppeteer": "^21.9.0",
"replace-ext": "^2.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.56.0",
"rollup": "^4.9.6",
"rollup-plugin-license": "^3.2.0",
"rollup-plugin-serve": "^2.0.2"
},
"files": [
"dist",
"src"
]
}