package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "simple",
  4. "private": true,
  5. "license": "AGPL-3.0",
  6. "type": "module",
  7. "scripts": {
  8. "build": "npm run build:icons && npm run build:vite",
  9. "build:icons": "node theme_icons.js",
  10. "build:vite": "vite build",
  11. "clean": "rm -Rf node_modules",
  12. "fix": "npm run fix:stylelint && npm run fix:biome && npm run fix:package",
  13. "fix:biome": "biome check --write",
  14. "fix:package": "sort-package-json --quiet",
  15. "fix:stylelint": "stylelint --fix strict 'src/**/*.{scss,sass,less,styl}'",
  16. "lint": "npm run lint:biome",
  17. "lint:biome": "biome lint"
  18. },
  19. "devDependencies": {
  20. "@biomejs/biome": "~2.0.6",
  21. "edge.js": "^6.2.1",
  22. "ionicons": "^8.0.9",
  23. "leaflet": "^1.9.4",
  24. "less": "^4.3.0",
  25. "normalize.css": "^8.0.1",
  26. "sharp": "^0.34.2",
  27. "sort-package-json": "^3.0.0",
  28. "stylelint": "^16.21.0",
  29. "stylelint-config-standard-less": "^3.0.1",
  30. "stylelint-prettier": "^5.0.3",
  31. "svgo": "^4.0.0",
  32. "swiped-events": "^1.2.0",
  33. "vite": "^6.3.5",
  34. "vite-plugin-static-copy": "^3.1.0"
  35. }
  36. }