-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.26 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
74
75
76
77
78
79
80
{
"name": "@amraneze/osm-autocomplete",
"version": "0.0.7-beta",
"description": "OpenStreetMap Autocomplete",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"check-types": "tsc",
"lint": "eslint --ext .ts,.tsx \"src/**/*\"",
"lint:fix": "eslint --ext .ts,.tsx \"src/**/*\" --fix",
"prettier:fix": "yarn prettier --write .",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Amraneze/osm-autocomplete.git"
},
"keywords": [
"osm",
"OpenStreetMap",
"autocomplete",
"react",
"maps"
],
"email": "[email protected]",
"author": "Amrane Ait Zeouay <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Amraneze/osm-autocomplete/issues"
},
"homepage": "https://github.com/Amraneze/osm-autocomplete#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.1",
"@types/node": "^20.3.2",
"@types/react": "^18.2.12",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-risxss": "^2.1.0",
"husky": "^8.0.0",
"pinst": "^3.0.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-uglify": "^6.0.4",
"sass": "^1.63.6",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}