-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.12 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
{
"name": "@aws/amazon-location-for-maplibre-gl-geocoder",
"version": "1.0.4",
"description": "Maplibre Plugin to Support Amazon Location Service Integration",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.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-location": "^3.564.0",
"@aws/amazon-location-utilities-auth-helper": "^1.0.6",
"@aws/amazon-location-utilities-datatypes": "^1.0.5",
"@maplibre/maplibre-gl-geocoder": "^1.5.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@jest/types": "^29.5.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.5.0",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"rollup": "^4.17.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
}
}