package.json 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. {
  2. "name": "@tabler/core",
  3. "version": "0.0.1",
  4. "description": "Premium and Open Source dashboard template with responsive and high quality UI.",
  5. "homepage": "https://tabler.io",
  6. "scripts": {
  7. "dev": "pnpm run start-plugins",
  8. "start": "gulp start",
  9. "start-plugins": "gulp start --with-plugins",
  10. "build": "gulp build",
  11. "build-docs": "mkdir public && touch public/index.html && echo 'ok'",
  12. "preview": "gulp build --preview",
  13. "svg-optimize": "svgo -f svg/brand --pretty",
  14. "unused-files": "node .build/unused-files.js",
  15. "release": "changeset publish",
  16. "version": "changeset version && pnpm install",
  17. "svg-icons": "node .build/import-icons.js",
  18. "bundlewatch": "bundlewatch",
  19. "storybook": "start-storybook -p 6006",
  20. "changelog": "node .build/changelog.js",
  21. "icons": "git checkout dev && BRANCH_NAME=\"dev-tabler-icons-`pnpm info @tabler/icons version`\" && git branch $BRANCH_NAME && git checkout $BRANCH_NAME && ncu -u @tabler/icons && pnpm install && pnpm run svg-icons && git add . && git commit -am \"update icons to v`pnpm info @tabler/icons version`\" && git push origin $BRANCH_NAME && git checkout dev",
  22. "download-images": "node .build/download-images.js",
  23. "optimize-images": "for i in ./src/static/photos/*.jpg; do convert \"$i\" -quality 80% \"${i%.jpg}.jpg\"; done",
  24. "format:check": "prettier --check src/**/*.{js,scss} --cache",
  25. "format:write": "prettier --write src/**/*.{js,scss} --cache",
  26. "illustrations": "node .build/import-illustrations.js"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/tabler/tabler.git"
  31. },
  32. "keywords": [
  33. "css",
  34. "sass",
  35. "mobile-first",
  36. "responsive",
  37. "front-end",
  38. "framework",
  39. "web"
  40. ],
  41. "author": "codecalm",
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/tabler/tabler/issues"
  45. },
  46. "funding": {
  47. "type": "github",
  48. "url": "https://github.com/sponsors/codecalm"
  49. },
  50. "engines": {
  51. "node": ">=18"
  52. },
  53. "files": [
  54. "docs/**/*",
  55. "dist/**/*",
  56. "src/js/**/*.{js,map}",
  57. "src/img/**/*.{svg}",
  58. "src/scss/**/*.scss"
  59. ],
  60. "style": "dist/css/tabler.css",
  61. "sass": "src/scss/tabler.scss",
  62. "unpkg": "dist/js/tabler.min.js",
  63. "umd:main": "dist/js/tabler.min.js",
  64. "module": "dist/js/tabler.esm.js",
  65. "main": "dist/js/tabler.js",
  66. "bundlewatch": {
  67. "files": [
  68. {
  69. "path": "./dist/css/tabler.css",
  70. "maxSize": "75 kB"
  71. },
  72. {
  73. "path": "./dist/css/tabler.min.css",
  74. "maxSize": "70 kB"
  75. },
  76. {
  77. "path": "./dist/css/tabler.rtl.css",
  78. "maxSize": "75 kB"
  79. },
  80. {
  81. "path": "./dist/css/tabler.rtl.min.css",
  82. "maxSize": "70 kB"
  83. },
  84. {
  85. "path": "./dist/css/tabler-flags.css",
  86. "maxSize": "2 kB"
  87. },
  88. {
  89. "path": "./dist/css/tabler-flags.min.css",
  90. "maxSize": "2 kB"
  91. },
  92. {
  93. "path": "./dist/css/tabler-payments.css",
  94. "maxSize": "2 kB"
  95. },
  96. {
  97. "path": "./dist/css/tabler-payments.min.css",
  98. "maxSize": "2 kB"
  99. },
  100. {
  101. "path": "./dist/css/tabler-social.css",
  102. "maxSize": "2 kB"
  103. },
  104. {
  105. "path": "./dist/css/tabler-social.min.css",
  106. "maxSize": "2 kB"
  107. },
  108. {
  109. "path": "./dist/css/tabler-vendors.css",
  110. "maxSize": "7 kB"
  111. },
  112. {
  113. "path": "./dist/css/tabler-vendors.min.css",
  114. "maxSize": "6 kB"
  115. },
  116. {
  117. "path": "./dist/js/tabler.js",
  118. "maxSize": "60 kB"
  119. },
  120. {
  121. "path": "./dist/js/tabler.min.js",
  122. "maxSize": "45 kB"
  123. },
  124. {
  125. "path": "./dist/js/tabler.esm.js",
  126. "maxSize": "60 kB"
  127. },
  128. {
  129. "path": "./dist/js/tabler.esm.min.js",
  130. "maxSize": "45 kB"
  131. }
  132. ]
  133. },
  134. "devDependencies": {
  135. "@babel/core": "^7.25.2",
  136. "@babel/preset-env": "^7.25.4",
  137. "@changesets/cli": "^2.27.8",
  138. "@rollup/plugin-commonjs": "^24.1.0",
  139. "@rollup/plugin-node-resolve": "^15.2.3",
  140. "@rollup/plugin-replace": "^5.0.7",
  141. "@rollup/pluginutils": "^5.1.0",
  142. "@rollup/stream": "^2.0.0",
  143. "@shopify/prettier-plugin-liquid": "^1.5.0",
  144. "all-contributors-cli": "^6.26.1",
  145. "apexcharts": "^3.53.0",
  146. "autoprefixer": "^10.4.20",
  147. "autosize": "^6.0.1",
  148. "browser-sync": "^2.29.3",
  149. "bundlewatch": "^0.3.3",
  150. "choices.js": "^10.2.0",
  151. "countup.js": "^2.8.0",
  152. "cross-spawn": "^7.0.3",
  153. "dropzone": "^6.0.0-beta.2",
  154. "flatpickr": "^4.6.13",
  155. "fslightbox": "^3.4.1",
  156. "glob": "^10.4.5",
  157. "gulp": "^4.0.2",
  158. "gulp-clean": "^0.4.0",
  159. "gulp-clean-css": "^4.3.0",
  160. "gulp-debug": "^4.0.0",
  161. "gulp-header": "^2.0.9",
  162. "gulp-postcss": "^9.0.1",
  163. "gulp-purgecss": "^5.0.0",
  164. "gulp-rename": "^2.0.0",
  165. "gulp-rtlcss": "^2.0.0",
  166. "gulp-sass": "^5.1.0",
  167. "gulp-terser": "^2.1.0",
  168. "imageoptim-cli": "^3.1.9",
  169. "imask": "^7.6.1",
  170. "jsvectormap": "^1.6.0",
  171. "list.js": "^2.3.1",
  172. "litepicker": "^2.0.12",
  173. "nouislider": "^15.8.1",
  174. "plyr": "^3.7.8",
  175. "postcss": "^8.4.45",
  176. "prettier": "^2.8.8",
  177. "request": "^2.88.2",
  178. "rollup": "2.79.1",
  179. "rollup-plugin-babel": "^4.4.0",
  180. "rollup-plugin-cleanup": "^3.2.1",
  181. "sass": "^1.77.8",
  182. "star-rating.js": "^4.3.1",
  183. "tinymce": "^7.3.0",
  184. "tom-select": "^2.3.1",
  185. "vinyl-buffer": "^1.0.1",
  186. "vinyl-source-stream": "^2.0.0",
  187. "yaml": "^2.5.1",
  188. "yargs": "^17.7.2",
  189. "zod": "^3.23.8"
  190. },
  191. "dependencies": {
  192. "@popperjs/core": "^2.11.8",
  193. "@tabler/icons": "^3.17.0",
  194. "bootstrap": "5.3.3"
  195. },
  196. "peerDependencies": {
  197. "@melloware/coloris": "^0.19.1",
  198. "apexcharts": "^3.40.0",
  199. "autosize": "^6.0.1",
  200. "choices.js": "^10.2.0",
  201. "countup.js": "^2.6.2",
  202. "dropzone": "^6.0.0-beta.2",
  203. "flatpickr": "^4.6.13",
  204. "fslightbox": "^3.4.1",
  205. "imask": "^6.6.1",
  206. "jsvectormap": "^1.5.3",
  207. "list.js": "^2.3.1",
  208. "litepicker": "^2.0.12",
  209. "nouislider": "^15.7.0",
  210. "plyr": "^3.7.8",
  211. "star-rating.js": "^4.3.0",
  212. "tinymce": "^6.4.2 || ^7.0.0",
  213. "tom-select": "^2.2.2"
  214. },
  215. "peerDependenciesMeta": {
  216. "@melloware/coloris": {
  217. "optional": true
  218. },
  219. "apexcharts": {
  220. "optional": true
  221. },
  222. "autosize": {
  223. "optional": true
  224. },
  225. "choices.js": {
  226. "optional": true
  227. },
  228. "countup.js": {
  229. "optional": true
  230. },
  231. "dropzone": {
  232. "optional": true
  233. },
  234. "flatpickr": {
  235. "optional": true
  236. },
  237. "fslightbox": {
  238. "optional": true
  239. },
  240. "imask": {
  241. "optional": true
  242. },
  243. "jsvectormap": {
  244. "optional": true
  245. },
  246. "list.js": {
  247. "optional": true
  248. },
  249. "litepicker": {
  250. "optional": true
  251. },
  252. "nouislider": {
  253. "optional": true
  254. },
  255. "plyr": {
  256. "optional": true
  257. },
  258. "tinymce": {
  259. "optional": true
  260. },
  261. "tom-select": {
  262. "optional": true
  263. },
  264. "star-rating.js": {
  265. "optional": true
  266. }
  267. },
  268. "directories": {
  269. "doc": "docs"
  270. }
  271. }