-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.16 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": "vite-plugin-pagefind",
"description": "A Vite plugin for easily integrating pagefind into Vite based projects.",
"version": "0.3.0",
"license": "MIT",
"author": {
"name": "Hugo Korte",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Hugos68/vite-plugin-pagefind"
},
"homepage": "https://github.com/Hugos68/vite-plugin-pagefind#vite-plugin-pagefind",
"keywords": [
"vite",
"vite-plugin",
"pagefind"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "./dist/plugins/pagefind.js",
"exports": {
".": {
"types": "./dist/plugins/pagefind.d.ts",
"import": "./dist/plugins/pagefind.js"
},
"./types": {
"types": "./dist/types/pagefind.d.ts",
"import": "./dist/types/pagefind.js"
}
},
"scripts": {
"build": "tsc",
"format": "biome format "
},
"dependencies": {
"colorette": "^2.0.20",
"valibot": "0.31.0-rc.4"
},
"peerDependencies": {
"vite": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@changesets/cli": "^2.27.10",
"@types/node": "^20.17.9",
"typescript": "^5.7.2",
"unbuild": "^2.0.0"
},
"type": "module"
}