-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "@jackcarey/astro-lunr",
"version": "0.0.6",
"description": "An Astro integration to generate Lunr search index at build time",
"type": "module",
"types": "./dist/index.d.ts",
"author": "Jack Carey (https://jackcarey.co.uk)",
"homepage": "https://github.com/jackcarey/astro-lunr",
"bugs": "https://github.com/jackcarey/astro-lunr/issues",
"repository": {
"type": "git",
"url": "https://github.com/jackcarey/astro-lunr.git",
"directory": "/"
},
"license": "MIT",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "exit 0"
},
"keywords": [
"astro-component",
"astro-integration",
"search",
"lunr"
],
"devDependencies": {
"@types/node": "^18.7.6",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@docsearch/css": "^3.2.1",
"astro": "^1.0.0-beta.57",
"cheerio": "^1.0.0-rc.12",
"react": "^18.2.0"
}
}