-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.54 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@mathcrowd/mmarked",
"version": "1.8.4",
"description": "A customized markdown parser/renderer with tex2svg.",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"types": "tsc --noemit",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"docs": "npm run build && node demo/build.js",
"build": "npm run clean && npm run types && rollup -c ",
"demo": "npm run clean && rollup -c rollup.config.demo.mjs --watch",
"test": "jest --passWithNoTests",
"changelog": "git fetch && npx conventional-changelog -p angular -i CHANGELOG.md -s --release-count 0 && git add package.json CHANGELOG.md && git commit -m 'chore: package.json / CHANGELOG updated.'"
},
"repository": {
"type": "git",
"url": "https://github.com/mathedu4all/mmarked.git"
},
"keywords": [
"markdown",
"mathjax",
"svg"
],
"author": "Charles Bao",
"license": "CC BY-NC 4.0",
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.11",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-regexp": "^2.7.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"js-md5": "^0.8.3",
"marked": "^13.0.2",
"marked-highlight": "2.1.3",
"prettier": "^3.1.1",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-visualizer": "^5.12.0",
"typescript-eslint": "^8.18.1"
},
"peerDependencies": {
"highlight.js": "^11.10.0",
"mathjax-full": "^3.2.2"
}
}