-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 966 Bytes
/
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
{
"name": "vite-plugin-pagefind",
"version": "1.0.5",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./types": {
"require": "./dist/types.cjs",
"import": "./dist/types.mjs",
"types": "./dist/types.d.ts"
}
},
"scripts": {
"build": "unbuild",
"build:watch": "unbuild --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"check": "biome check",
"check:fix": "biome check --write",
"prepack": "unbuild"
},
"dependencies": {
"colorette": "^2.0.20",
"package-manager-detector": "^0.2.8"
},
"peerDependencies": {
"vite": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.12",
"@types/node": "^22.10.10",
"typescript": "^5.7.3",
"unbuild": "^3.3.1"
},
"type": "module"
}