-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "markdown-it-wordless",
"description": "A markdown-it plugin for wordless languages line-break.",
"version": "1.1.1",
"type": "module",
"license": "MIT",
"keywords": [
"wordless",
"line-break",
"markdown",
"markdown-it",
"vitepress"
],
"homepage": "https://treeinfra.github.io/markdown-it-wordless/",
"repository": {
"type": "git",
"url": "https://github.com/treeinfra/markdown-it-wordless.git"
},
"author": {
"name": "James Aprosail",
"email": "[email protected]",
"url": "https://github.com/aprosail"
},
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.js",
"types": "./index.d.ts"
}
},
"scripts": {
"build": "rollup --config rollup.config.js",
"doc": "vitepress dev docs",
"doc.build": "npm run build && vitepress build docs",
"format": "prettier . --write",
"format.check": "prettier . --check",
"prepublishOnly": "npm run review",
"review": "npm run format.check && npm test && npm run build",
"test": "vitest run"
},
"dependencies": {
"markdown-it": "^14.1.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/markdown-it": "^14.1.1",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"vitepress": "^1.2.3",
"vitest": "^2.0.3"
}
}