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.
leaflet-components/package.json

50 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": {
".": {
"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 && tsc -p tsconfig.test.json",
"lint": "oxlint src test",
"format": "prettier --write '*.md' 'src/**/*.{ts,js,json,md}' 'test/**/*.ts'",
"test": "vitest run",
"test:watch": "vitest",
"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",
"jsdom": "^30.0.1",
"oxlint": "^1.79.0",
"prettier": "3.8.3",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}