package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@tabler/icons-vue",
  3. "version": "2.5.0",
  4. "license": "MIT",
  5. "author": "codecalm",
  6. "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
  7. "homepage": "https://tabler-icons.io",
  8. "bugs": {
  9. "url": "https://github.com/tabler/tabler-icons/issues"
  10. },
  11. "funding": {
  12. "type": "github",
  13. "url": "https://github.com/sponsors/codecalm"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/tabler/tabler-icons.git",
  18. "directory": "packages/icons-vue"
  19. },
  20. "main": "dist/cjs/tabler-icons-vue.js",
  21. "main:umd": "dist/umd/tabler-icons-vue.js",
  22. "module": "dist/esm/tabler-icons-vue.js",
  23. "unpkg": "dist/umd/tabler-icons-vue.min.js",
  24. "typings": "dist/tabler-icons-vue.d.ts",
  25. "sideEffects": false,
  26. "files": [
  27. "dist"
  28. ],
  29. "scripts": {
  30. "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm run build:bundles",
  31. "build:icons": "node build.mjs",
  32. "build:bundles": "rollup -c ./rollup.config.mjs",
  33. "copy:license": "cp ../../LICENSE ./LICENSE",
  34. "clean": "rm -rf dist && rm -rf ./src/icons/*.js",
  35. "test": "pnpm run clean && pnpm run build:icons && jest --env=jsdom"
  36. },
  37. "dependencies": {
  38. "@tabler/icons": "2.5.0"
  39. },
  40. "peerDependencies": {
  41. "vue": ">=3.0.1"
  42. },
  43. "devDependencies": {
  44. "@babel/preset-env": "7.11.5",
  45. "@testing-library/vue": "^6.6.1",
  46. "@vue/compiler-sfc": "^3.2.45",
  47. "@vue/test-utils": "^2.2.4",
  48. "babel-jest": "^29.4.1",
  49. "jest": "^29.4.1",
  50. "jest-environment-jsdom": "^29.4.1",
  51. "jest-serializer-vue": "^3.1.0",
  52. "vue": "^3.2.45",
  53. "vue-jest": "^5.0.0-alpha.10"
  54. },
  55. "jest": {
  56. "testEnvironmentOptions": {
  57. "customExportConditions": [
  58. "node",
  59. "node-addons"
  60. ]
  61. },
  62. "snapshotSerializers": [
  63. "jest-serializer-vue"
  64. ],
  65. "transform": {
  66. "^.+\\.js$": "babel-jest",
  67. "^.+\\.vue$": "vue-jest"
  68. }
  69. }
  70. }