-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 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
{
"name": "guimath",
"version": "0.2.0",
"description": "Create mathematical equations on webpages using a GUI",
"main": "dist/guimath.umd.js",
"module": "dist/guimath.esm.js",
"unpkg": "dist/guimath.min.js",
"style": "dist/guimath.css",
"files": [
"dist"
],
"directories": {
"doc": "docs"
},
"scripts": {
"test": "webpack",
"build": "rollup -c rollup.config.js",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "https://github.com/hrushikeshrv/guimath.git"
},
"keywords": [
"latex",
"mathjax",
"equations",
"math",
"gui"
],
"author": "Hrushikesh Vaidya",
"license": "MIT",
"bugs": {
"url": "https://github.com/hrushikeshrv/guimath/issues"
},
"homepage": "https://github.com/hrushikeshrv/guimath",
"devDependencies": {
"html-minifier-terser": "^7.2.0",
"rollup": "^4.53.5",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-string": "^3.0.0",
"vite": "^6.4.1",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0"
}
}