-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 2.16 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
{
"name": "@aws/amazon-location-for-maplibre-gl-geocoder",
"version": "2.0.0",
"description": "Maplibre Plugin to Support Amazon Location Service Integration",
"browser": "./dist/amazonLocationMaplibreGeocoder.js",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"unpkg": "./dist/amazonLocationMaplibreGeocoder.js",
"types": "./dist/types/index.d.ts",
"files": [
"./package.json",
"./dist"
],
"scripts": {
"clean": "rm -r dist",
"prettier": "prettier -w .",
"prettier:check": "prettier -c .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typedoc": "typedoc",
"test": "jest --coverage",
"build": "npm-run-all build:*",
"build:ts": "npm-run-all build-ts:*",
"build:bundle": "rollup -c",
"build-ts:types": "tsc --declaration --emitDeclarationOnly --outDir dist/types",
"build-ts:cjs": "tsc --module commonjs --outDir dist/cjs",
"build-ts:esm": "tsc --esModuleInterop --module esnext --outDir dist/esm",
"build:css": "cp src/common/amazon-location-for-mlg-styles.css dist/",
"prepare": "husky install",
"prepublishOnly": "npm-run-all build clean lint prettier prettier:check test build build:bundle"
},
"dependencies": {
"@aws-sdk/client-geo-places": "^3.683.0",
"@aws-sdk/client-location": "^3.682.0",
"@maplibre/maplibre-gl-geocoder": "^1.7.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@jest/types": "^29.6.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"rollup": "^4.24.3",
"rollup-plugin-polyfill-node": "^0.13.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.2",
"typescript": "^5.6.3"
}
}