forked from kisonecat/tikzjax
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
55
56
57
58
59
60
{
"name": "@drgrice1/tikzjax",
"version": "1.0.0-beta24",
"description": "TikZJax loader",
"author": "Jim Fowler",
"contributors": [
"Glenn Rice"
],
"license": "GPL-3.0+",
"main": "tikzjax.js",
"repository": {
"type": "git",
"url": "git+https://github.com/drgrice1/tikzjax.git"
},
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"gen-tex-files": "node genTexFiles.js",
"install-fonts": "node installFonts.mjs",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"postbuild": "npm run install-fonts && npm run gen-tex-files",
"serve": "webpack serve --mode development"
},
"dependencies": {
"@drgrice1/dvi2html": "^0.0.7-beta4",
"buffer": "^6.0.3",
"idb": "^8.0.1",
"pako": "^2.1.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"threads": "^1.7.0"
},
"devDependencies": {
"@awmottaz/prettier-plugin-void-html": "^1.6.1",
"@stylistic/eslint-plugin": "^2.12.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"decompress": "^4.2.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-webpack-plugin": "^4.2.0",
"fonteditor-core": "^2.4.1",
"prettier": "^3.4.2",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
},
"overrides": {
"@awmottaz/prettier-plugin-void-html": {
"prettier": ">=3.4.2"
}
}
}