-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "temml",
"version": "0.11.00",
"description": "TeX to MathML conversion in JavaScript.",
"main": "dist/temml.js",
"engines": {
"node": ">=18.13.0"
},
"exports": {
".": {
"require": "./dist/temml.cjs",
"import": "./dist/temml.mjs",
"types": "./dist/temml.d.ts"
},
"./*": "./*"
},
"homepage": "https://temml.org",
"repository": {
"type": "git",
"url": "git://github.com/ronkok/Temml"
},
"packageManager": "[email protected]",
"files": [
"temml.js",
"src/",
"contrib/",
"dist/"
],
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"esm": "^3.2.25",
"globals": "^15.9.0",
"rollup": "^4.22.4",
"terser": "^5.34.0"
},
"scripts": {
"lint": "eslint temml.js src",
"unit-test": "node ./test/unit-test.cjs",
"visual-test": "node utils/buildTests.js",
"test": "yarn lint && node utils/buildTests.js && yarn unit-test",
"minify": "terser test/temml.js -o site/assets/temml.min.js -c -m && terser contrib/mhchem/mhchem.js -o site/assets/mhchem.min.js -c -m",
"build": "rollup --config ./utils/rollupConfig.mjs && yarn minify && node utils/insertPlugins.js",
"docs": "node utils/buildDocs.js",
"dist": "yarn build && node ./utils/copyfiles.js"
}
}