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.
46 lines
977 B
JSON
46 lines
977 B
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": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./dist/*": "./dist/*",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"sideEffects": true,
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "rm -rf dist && tsc --outDir dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "oxlint src",
|
|
"format": "prettier --write 'src/**/*.{ts,js,json,md}'",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"leaflet",
|
|
"web-components",
|
|
"maps"
|
|
],
|
|
"author": "buddy",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"leaflet": "1.9.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/leaflet": "1.9.21",
|
|
"oxlint": "^1.79.0",
|
|
"prettier": "3.8.3",
|
|
"typescript": "^7.0.2"
|
|
}
|
|
}
|