-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 1.82 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
67
68
69
70
71
72
73
{
"name": "@placekit/autocomplete-react",
"version": "2.2.2",
"author": "PlaceKit <[email protected]>",
"description": "PlaceKit Autocomplete React library",
"keywords": [
"addresses",
"autocomplete",
"geocoder",
"geocoding",
"locations",
"react",
"search"
],
"license": "MIT",
"homepage": "https://github.com/placekit/autocomplete-react#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/placekit/autocomplete-react.git"
},
"bugs": {
"url": "https://github.com/placekit/autocomplete-react/issues"
},
"type": "module",
"main": "./dist/placekit-react.cjs.js",
"module": "./dist/placekit-react.esm.mjs",
"types": "./dist/placekit-react.d.ts",
"exports": {
".": {
"types": "./dist/placekit-react.d.ts",
"require": "./dist/placekit-react.cjs.js",
"import": "./dist/placekit-react.esm.mjs"
}
},
"files": [
"dist",
"LICENSE"
],
"watch": {
"build": "src/*.*"
},
"scripts": {
"clear": "rimraf ./dist",
"dev": "npm-watch build",
"build": "rollup -c",
"lint": "eslint ./src",
"format": "prettier --write ./src"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"npm-watch": "^0.11.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"rollup-plugin-copy": "^3.5.0"
},
"dependencies": {
"@placekit/autocomplete-js": "^2.2.1",
"@types/react": "^18.2.58",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
}
}