-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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-pagefind",
"description": "A Vite plugin for easily integrating pagefind into Vite based projects.",
"version": "0.2.10",
"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": {
"dev": "tsc -w",
"build": "tsc",
"check": "biome check . --apply",
"ci:check": "biome check .",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"colorette": "^2.0.20",
"valibot": "0.31.0-rc.4"
},
"peerDependencies": {
"vite": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@changesets/cli": "^2.27.3",
"@types/node": "^20.12.12",
"typescript": "^5.3.3"
},
"type": "module"
}