-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"name": "react-meilisearch",
"description": "react client for integration with meilisearch server",
"version": "1.0.1",
"private": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"sideEffects": false,
"files": [
"dist"
],
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:cjs": "tsc --outDir dist/cjs",
"build:es": "tsc -m esNext --outDir dist/esm",
"build": "shx rm -rf dist && npm run build:cjs && npm run build:es"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ItamarSmirra/React-Meilisearch.git"
},
"keywords": [
"meilisearch",
"react",
"search"
],
"author": "itamar-smirra",
"license": "MIT",
"bugs": {
"url": "https://github.com/ItamarSmirra/React-Meilisearch/issues"
},
"homepage": "https://github.com/ItamarSmirra/React-Meilisearch#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.0.5",
"@types/react": "^18.0.15",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.5",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"meilisearch": ">= 0.22.0",
"react": "16.x || 17.x || 18.x",
"react-dom": ">= 16.x"
}
}