-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.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
{
"name": "markdown-it-label",
"version": "2.0.2",
"description": "A markdown-it plugin, which adds labels/tags",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"require": "./dist/cjs/*.js",
"import": "./dist/esm/*.js",
"default": "./dist/esm/*.js"
}
},
"types": "./dist/types/index.d.ts",
"main": "./dist/cjs/index.js",
"scripts": {
"dev": "vitest",
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json && node after-build.js",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/bioruebe/markdown-it-label"
},
"author": "bioruebe",
"license": "MIT",
"bugs": {
"url": "https://github.com/bioruebe/markdown-it-label/issues"
},
"homepage": "https://github.com/bioruebe/markdown-it-label",
"keywords": [
"markdown",
"markdown-it",
"markdown-it-plugin"
],
"files": [
"dist",
"docs",
"!**/*.spec.*",
"!test",
"LICENSE",
"README.md"
],
"dependencies": {
"css-color-names": "^1.0.1"
},
"devDependencies": {
"@types/markdown-it": "latest",
"markdown-it": "latest",
"typescript": "^5.0.3",
"vite": "^5.1.6",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.4.0"
},
"peerDependencies": {
"markdown-it": ">=5"
}
}