-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
79 lines (79 loc) · 2.24 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
{
"name": "markdown-it-math",
"version": "5.2.0",
"type": "module",
"description": "Markdown-it plugin to include math in your document",
"main": "index.js",
"types": "types/index.js",
"exports": {
".": {
"default": "./index.js",
"types": "./types/index.d.ts"
},
"./no-default-renderer": {
"default": "./no-default-renderer.js",
"types": "./types/no-default-renderer.d.ts"
},
"./temml": {
"default": "./temml.js",
"types": "./types/temml.d.ts"
}
},
"scripts": {
"clean": "rm -fr coverage/ types/ pages/",
"check": "tsc --noEmit",
"demo:build": "./scripts/build-pages.sh",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run types",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"test": "node --test --experimental-test-coverage",
"test:coverage-badge": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter ./test/reporters/coverage-badge-reporter.js --test-reporter-destination coverage/badge.svg",
"test:watch": "node --test --watch",
"types": "tsc index.js no-default-renderer.js temml.js --allowJS --declaration --declarationMap --emitDeclarationOnly --esModuleInterop --outDir types"
},
"repository": {
"type": "git",
"url": "https://github.com/runarberg/markdown-it-math"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"markdown",
"MathML",
"AsciiMath",
"mathup"
],
"author": "Rúnar Berg Baugsson Sigríðarson",
"license": "MIT",
"bugs": {
"url": "https://github.com/runarberg/markdown-it-math/issues"
},
"homepage": "https://github.com/runarberg/markdown-it-math",
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.13.9",
"badge-maker": "^4.1.0",
"eslint": "^9.21.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"markdown-it": "^14.1.0",
"prettier": "3.5.3",
"typescript": "^5.8.2"
},
"peerDependencies": {
"mathup": "^1.0.0",
"temml": "^0.11.0"
},
"peerDependenciesMeta": {
"mathup": {
"optional": true
},
"temml": {
"optional": true
}
}
}