-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.17 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
{
"name": "@goodforyou/vite-plugin-markdown-import",
"description": "Vite plugin to import markdown files with support for front-matter",
"version": "1.2.7",
"keywords": [
"vite",
"vite-plugin",
"markdown",
"front-matter"
],
"private": false,
"license": "GPL-3.0-only",
"author": {
"name": "Nick Cunningham",
"url": "https://github.com/TheNickOfTime"
},
"funding": "https://buymeacoffee.com/thenickoftime",
"repository": {
"type": "git",
"url": "https://github.com/good-for-you-web-services/vite-plugin-import-markdown"
},
"bugs": {
"url": "https://github.com/good-for-you-web-services/vite-plugin-import-markdown/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./client": {
"types": "./client.d.ts"
}
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"prepare": "npm run build"
},
"files": [
"dist",
"client.d.ts"
],
"devDependencies": {
"@types/node": "^22.8.6",
"typescript": "^5.6.3"
},
"peerDependencies": {
"front-matter": "^4.0.0",
"vite": ">=2.6.0"
}
}