forked from kisonecat/dvi2html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
46
47
48
49
50
51
52
53
54
{
"name": "@drgrice1/dvi2html",
"version": "0.0.7-beta4",
"description": "Convert DVI to HTML5/CSS",
"author": "Jim Fowler",
"license": "GPL-3.0",
"contributors": [
"Glenn Rice"
],
"repository": {
"type": "git",
"url": "git+https://github.com/drgrice1/dvi2html.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.js"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"build:glyphs": "NODE_NO_WARNINGS=1 node tools/glyphs.js",
"build:fonts": "NODE_NO_WARNINGS=1 node tools/tfm2json.js",
"build:lib:dev": "webpack",
"build:lib": "webpack --mode production",
"build": "npm run build:glyphs && npm run build:fonts && npm run build:lib"
},
"files": [
"dist/**/*"
],
"dependencies": {
"buffer": "^6.0.3"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"@types/node": "^22.10.5",
"decompress": "^4.2.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-webpack-plugin": "^4.2.0",
"follow-redirects": "^1.15.9",
"fonteditor-core": "^2.4.1",
"prettier": "^3.4.2",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}