You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "leaflet-components",
|
|
"version": "0.1.0",
|
|
"description": "LeafletJS as Web Components",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "rm -rf dist && tsc --emitDeclarationOnly && esbuild src/index.ts --bundle --format=esm --outfile=dist/index.js",
|
|
"lint": "eslint 'src/**/*.{ts,js}'",
|
|
"format": "prettier --write 'src/**/*.{ts,js,json,md}'",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"leaflet",
|
|
"web-components",
|
|
"maps"
|
|
],
|
|
"author": "buddy",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@types/leaflet": "1.9.21",
|
|
"leaflet": "1.9.4",
|
|
"@typescript-eslint/eslint-plugin": "8.60.1",
|
|
"@typescript-eslint/parser": "8.60.1",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "10.4.1",
|
|
"eslint-config-prettier": "10.1.8",
|
|
"eslint-plugin-prettier": "5.5.6",
|
|
"prettier": "3.8.3",
|
|
"typescript": "6.0.3"
|
|
}
|
|
}
|