-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.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
{
"name": "vite-plugin-markdown-to-js",
"version": "0.1.14-beta.3",
"description": "Markdown to script.",
"main": "./index.js",
"module": "./index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
}
},
"scripts": {
"build": "vite build && tsc",
"publish": "cd dist && npm publish",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikeq/vite-plugin-markdown-to-js.git"
},
"keywords": [
"vite",
"vue"
],
"author": "ikeq",
"license": "MIT",
"bugs": {
"url": "https://github.com/ikeq/vite-plugin-markdown-to-js/issues"
},
"homepage": "https://github.com/ikeq/vite-plugin-markdown-to-js#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"vite": "^5.1.4"
},
"dependencies": {
"@types/marked": "2.0.4",
"gray-matter": "^4.0.3",
"lodash": "4.17.21",
"marked": "2.1.3"
}
}