-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.7 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
57
58
59
60
61
62
63
64
65
66
{
"name": "pizza-docsearch",
"version": "0.1.0",
"description": "A quick search component for pizza/easysearch, inspired by algolia/docsearch.",
"license": "MIT or Apache-2.0",
"files": [
"dist",
"LICENSE_*"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./solid": {
"types": "./dist/index.solid.d.ts",
"import": "./dist/index.solid.jsx",
"require": "./dist/index.solid.jsx",
"default": "./dist/index.solid.jsx"
},
"./css": "./dist/index.css",
"./css/variables": "./dist/variables.css",
"./css/button": "./dist/button.css",
"./css/modal": "./dist/modal.css"
},
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsup",
"watch": "tsup --watch",
"ts:check": "tsc --noEmit",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,html,css}\" --ignore-path .gitignore",
"format:check": "prettier --check \"./**/*.{js,jsx,ts,tsx,json,html,css}\" --ignore-path .gitignore"
},
"dependencies": {
"mocha": "^10.7.3",
"solid-js": "1.8.17",
"pizza-wasm": "file:../wasm/pkg"
},
"devDependencies": {
"@types/node": "^22.5.0",
"covector": "0.11.0",
"esbuild": "0.21.5",
"esbuild-plugin-solid": "0.6.0",
"pizza-wasm": "file:../wasm/pkg",
"prettier": "3.3.2",
"tsup": "8.1.0",
"typescript": "^5.5.2"
},
"resolutions": {
"semver": ">=7.5.2"
},
"keywords": [
"pizza",
"search",
"docsearch",
"autocomplete",
"docs",
"quicksearch",
"quicksearchbar"
]
}