-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "@apify/docs-search-modal",
"version": "1.2.0",
"description": "A custom implementation of the modal search for Apify Docs.",
"author": "Jindřich Bär",
"license": "ISC",
"dependencies": {
"@algolia/autocomplete-js": "^1.10.0",
"@algolia/autocomplete-theme-classic": "^1.10.0",
"algoliasearch": "^4.19.1",
"html-entities": "^2.4.0",
"react-hotkeys-hook": "^4.4.1",
"react-icons": "^4.10.1",
"react-syntax-highlighter": "^15.5.0"
},
"devDependencies": {
"@types/node": "^20.4.8",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^5.0.1",
"tailwindcss": "^3.3.3",
"typescript": "^4.9.5"
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && tsc && npx tailwindcss -i ./src/index.css -o ./dist/index.css",
"inject": "yarn build && cp -r ./dist ./../apify-docs/node_modules/@apify/docs-search-modal"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"peerDependencies": {
"react": "> 18.0.0",
"react-dom": "> 18.0.0"
},
"packageManager": "[email protected]"
}