-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.6 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@staticcanvas/foxinsearch",
"version": "0.3.1",
"description": "Lightweight client-side search engine for static sites using Lunr.js. Perfect for Jekyll, Hugo, and other static site generators.",
"license": "MIT",
"type": "module",
"main": "dist/foxinsearch.js",
"module": "dist/foxinsearch.esm.js",
"jsdelivr": "dist/foxinsearch.js",
"unpkg": "dist/foxinsearch.js",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/staticcanvas/foxinsearch.git"
},
"homepage": "https://gitlab.com/staticcanvas/foxinsearch#readme",
"exports": {
"import": "./dist/foxinsearch.esm.js"
},
"extras": {
"compliedBy": {
"rollup": "v3.12.1",
"vite": "v7.2.4",
"eslint": "^9.17.0",
"node": "v24.11.1"
}
},
"author": {
"name": "Garvey K. Snow",
"email": "sgkens@gmail.com",
"url": "https://gitlab.com/staticcanvas/foxinsearch",
"github": "https://github.com/staticcanvas/foxinsearch",
"gitlab": "https://gitlab.com/staticcanvas/foxinsearch"
},
"keywords": [
"search",
"live-search",
"instant-search",
"static-site",
"jekyll",
"eleventy",
"javascript",
"es6",
"lunr"
],
"scripts": {
"dev": "vite build --watch",
"build": "npm install --package-lock-only && vite build",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"update:package-lock": "npm install --package-lock-only",
"update:npm": "npm install -g npm@latest",
"serve:example": "npm run build && shx cp dist/foxinsearch/dist/*.js example/ && shx cp dist/foxinsearch/dist/*.js.map example/ && shx cp themes/css/foxin.css example && http-server example -p 8080",
"publish:npm": "npm run lint:fix && npm run build && cd dist/foxinsearch && echo //registry.npmjs.org/:_authToken=${NPM_API_KEY} > .npmrc && npm publish --access public",
"publish:jsr": "npm run lint:fix && npm run build && cd dist/foxinsearch && npx jsr publish --allow-dirty"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"package.json"
],
"dependencies": {
"lunr": "^2.3.9"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^8.8.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.8",
"rollup-plugin-copy": "^3.5.0",
"vite": "^7.2.4",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-dts": "^4.5.4",
"shx": "^0.3.4",
"lunr": "^2.3.9"
},
"engines": {
"node": ">=18.0.0"
},
"browserslist": [
"defaults",
"not ie < 11"
]
}