forked from dansvel/vite-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "@dansvel/vite-plugin-markdown",
"version": "2.0.5",
"author": "dan",
"license": "MIT",
"description": "A plugin for importing markdown files in Vite",
"keywords": [
"vite",
"plugin",
"markdown",
"front-matter"
],
"scripts": {
"fix": "echo { \"type\": \"commonjs\" } > dist/cjs/package.json && echo { \"type\": \"module\" } > dist/mjs/package.json",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && npm run fix",
"prepare": "npm run build"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"dependencies": {
"front-matter": "*",
"marked": "*",
"vite": "*"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"shx": "^0.3.3",
"typescript": "^4.5.3",
"vite": "^2.7.1"
},
"homepage": "https://github.com/dansvel/vite-import-markdown#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dansvel/vite-import-markdown.git"
},
"bugs": {
"url": "https://github.com/dansvel/vite-import-markdown/issues"
},
"files": [
"dist/"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}