package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@vben/stylelint-config",
  3. "version": "1.0.0",
  4. "private": true,
  5. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  6. "bugs": {
  7. "url": "https://github.com/vbenjs/vue-vben-admin/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
  12. "directory": "internal/stylelint-config"
  13. },
  14. "license": "MIT",
  15. "exports": {
  16. ".": {
  17. "types": "./dist/index.d.ts",
  18. "import": "./dist/index.mjs",
  19. "require": "./dist/index.cjs"
  20. }
  21. },
  22. "main": "./dist/index.cjs",
  23. "module": "./dist/index.mjs",
  24. "types": "./dist/index.d.ts",
  25. "files": [
  26. "dist"
  27. ],
  28. "scripts": {
  29. "clean": "pnpm rimraf .turbo node_modules dist",
  30. "lint": "pnpm eslint .",
  31. "stub": "pnpm unbuild --stub"
  32. },
  33. "devDependencies": {
  34. "postcss": "^8.4.24",
  35. "postcss-html": "^1.5.0",
  36. "postcss-less": "^6.0.0",
  37. "postcss-scss": "^4.0.6",
  38. "prettier": "^2.8.8",
  39. "stylelint": "^15.10.1",
  40. "stylelint-config-property-sort-order-smacss": "^9.1.0",
  41. "stylelint-config-recommended": "^13.0.0",
  42. "stylelint-config-recommended-scss": "^12.0.0",
  43. "stylelint-config-recommended-vue": "^1.4.0",
  44. "stylelint-config-standard": "^34.0.0",
  45. "stylelint-config-standard-scss": "^10.0.0",
  46. "stylelint-order": "^6.0.3",
  47. "stylelint-prettier": "^3.0.0"
  48. }
  49. }