package.json 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. {
  2. "name": "@tabler/core",
  3. "version": "1.0.0-beta16",
  4. "description": "Premium and Open Source dashboard template with responsive and high quality UI.",
  5. "homepage": "https://tabler.io",
  6. "scripts": {
  7. "start": "gulp start",
  8. "start-plugins": "gulp start --with-plugins",
  9. "build": "gulp build",
  10. "preview": "gulp build --preview",
  11. "svg-optimize": "svgo -f svg/brand --pretty",
  12. "unused-files": "node build/unused-files.js",
  13. "release": "release-it",
  14. "svg-icons": "gulp svg-icons",
  15. "percy": "gulp build && npx percy snapshot demo",
  16. "bundlewatch": "bundlewatch",
  17. "chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN",
  18. "storybook": "start-storybook -p 6006",
  19. "changelog": "gulp changelog",
  20. "icons": "ncu -u @tabler/icons && npm install && gulp svg-icons && git add . && git commit -am \"update icons to v`npm info @tabler/icons version`\" && git push",
  21. "download-images": "node build/download-images.js",
  22. "optimize-images": "for i in ./src/static/photos/*.jpg; do convert \"$i\" -quality 80% \"${i%.jpg}.jpg\"; done"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/tabler/tabler.git"
  27. },
  28. "keywords": [
  29. "css",
  30. "sass",
  31. "mobile-first",
  32. "responsive",
  33. "front-end",
  34. "framework",
  35. "web"
  36. ],
  37. "author": "codecalm",
  38. "license": "MIT",
  39. "bugs": {
  40. "url": "https://github.com/tabler/tabler/issues"
  41. },
  42. "funding": {
  43. "type": "github",
  44. "url": "https://github.com/sponsors/codecalm"
  45. },
  46. "engines": {
  47. "node": ">=16"
  48. },
  49. "files": [
  50. "dist/**/*",
  51. "src/js/**/*.{js,map}",
  52. "src/img/**/*.{svg}",
  53. "src/scss/**/*.scss"
  54. ],
  55. "style": "dist/css/tabler.css",
  56. "sass": "src/scss/tabler.scss",
  57. "unpkg": "dist/js/tabler.min.js",
  58. "umd:main": "dist/js/tabler.min.js",
  59. "module": "dist/js/tabler.esm.js",
  60. "main": "dist/js/tabler.js",
  61. "bundlewatch": {
  62. "files": [
  63. {
  64. "path": "./dist/css/tabler.css",
  65. "maxSize": "67 kB"
  66. },
  67. {
  68. "path": "./dist/css/tabler.min.css",
  69. "maxSize": "62 kB"
  70. },
  71. {
  72. "path": "./dist/css/tabler.rtl.css",
  73. "maxSize": "67 kB"
  74. },
  75. {
  76. "path": "./dist/css/tabler.rtl.min.css",
  77. "maxSize": "62 kB"
  78. },
  79. {
  80. "path": "./dist/css/tabler-flags.css",
  81. "maxSize": "2 kB"
  82. },
  83. {
  84. "path": "./dist/css/tabler-flags.min.css",
  85. "maxSize": "2 kB"
  86. },
  87. {
  88. "path": "./dist/css/tabler-payments.css",
  89. "maxSize": "2 kB"
  90. },
  91. {
  92. "path": "./dist/css/tabler-payments.min.css",
  93. "maxSize": "2 kB"
  94. },
  95. {
  96. "path": "./dist/css/tabler-vendors.css",
  97. "maxSize": "7 kB"
  98. },
  99. {
  100. "path": "./dist/css/tabler-vendors.min.css",
  101. "maxSize": "6 kB"
  102. },
  103. {
  104. "path": "./dist/js/tabler.js",
  105. "maxSize": "60 kB"
  106. },
  107. {
  108. "path": "./dist/js/tabler.min.js",
  109. "maxSize": "45 kB"
  110. },
  111. {
  112. "path": "./dist/js/tabler.esm.js",
  113. "maxSize": "60 kB"
  114. },
  115. {
  116. "path": "./dist/js/tabler.esm.min.js",
  117. "maxSize": "45 kB"
  118. }
  119. ]
  120. },
  121. "devDependencies": {
  122. "@babel/core": "^7.20.12",
  123. "@babel/preset-env": "^7.20.2",
  124. "@rollup/plugin-commonjs": "^24.0.0",
  125. "@rollup/plugin-node-resolve": "^15.0.1",
  126. "@rollup/plugin-replace": "^5.0.2",
  127. "@rollup/pluginutils": "^5.0.2",
  128. "@rollup/stream": "^2.0.0",
  129. "@tabler/icons": "^1.119.0",
  130. "apexcharts": "^3.36.3",
  131. "autoprefixer": "^10.4.13",
  132. "autosize": "^5.0.2",
  133. "browser-sync": "^2.27.11",
  134. "bundlewatch": "^0.3.3",
  135. "choices.js": "^10.2.0",
  136. "chromatic": "^6.14.0",
  137. "countup.js": "^2.3.2",
  138. "cross-spawn": "^7.0.3",
  139. "dropzone": "^6.0.0-beta.2",
  140. "flatpickr": "^4.6.13",
  141. "fslightbox": "^3.3.1",
  142. "gulp": "^4.0.2",
  143. "gulp-clean": "^0.4.0",
  144. "gulp-clean-css": "^4.3.0",
  145. "gulp-debug": "^4.0.0",
  146. "gulp-header": "^2.0.9",
  147. "gulp-postcss": "^9.0.1",
  148. "gulp-purgecss": "^5.0.0",
  149. "gulp-rename": "^2.0.0",
  150. "gulp-rtlcss": "^2.0.0",
  151. "gulp-sass": "^5.1.0",
  152. "gulp-terser": "^2.1.0",
  153. "imageoptim-cli": "^3.0.7",
  154. "imask": "^6.4.3",
  155. "jsvectormap": "^1.5.1",
  156. "list.js": "^2.3.1",
  157. "litepicker": "^2.0.12",
  158. "nouislider": "^15.6.1",
  159. "plyr": "^3.7.3",
  160. "postcss": "^8.4.20",
  161. "release-it": "^15.6.0",
  162. "request": "^2.88.2",
  163. "rollup": "2.79.1",
  164. "rollup-plugin-babel": "^4.4.0",
  165. "rollup-plugin-cleanup": "^3.2.1",
  166. "sass": "^1.57.1",
  167. "tinymce": "^6.3.1",
  168. "tom-select": "^2.2.2",
  169. "vinyl-buffer": "^1.0.1",
  170. "vinyl-source-stream": "^2.0.0",
  171. "yaml": "^2.2.1",
  172. "yargs": "^17.6.2"
  173. },
  174. "dependencies": {
  175. "@popperjs/core": "^2.11.6",
  176. "bootstrap": "5.3.0-alpha1"
  177. },
  178. "peerDependencies": {
  179. "apexcharts": "^3.36.3",
  180. "autosize": "^5.0.2",
  181. "choices.js": "^10.2.0",
  182. "countup.js": "^2.3.2",
  183. "dropzone": "^6.0.0-beta.2",
  184. "flatpickr": "^4.6.13",
  185. "fslightbox": "^3.3.1",
  186. "imask": "^6.4.3",
  187. "jsvectormap": "^1.5.1",
  188. "list.js": "^2.3.1",
  189. "litepicker": "^2.0.12",
  190. "nouislider": "^15.6.1",
  191. "plyr": "^3.7.3",
  192. "tinymce": "^6.3.1",
  193. "tom-select": "^2.2.2"
  194. },
  195. "peerDependenciesMeta": {
  196. "apexcharts": {
  197. "optional": true
  198. },
  199. "autosize": {
  200. "optional": true
  201. },
  202. "choices.js": {
  203. "optional": true
  204. },
  205. "countup.js": {
  206. "optional": true
  207. },
  208. "dropzone": {
  209. "optional": true
  210. },
  211. "flatpickr": {
  212. "optional": true
  213. },
  214. "fslightbox": {
  215. "optional": true
  216. },
  217. "imask": {
  218. "optional": true
  219. },
  220. "jsvectormap": {
  221. "optional": true
  222. },
  223. "list.js": {
  224. "optional": true
  225. },
  226. "litepicker": {
  227. "optional": true
  228. },
  229. "nouislider": {
  230. "optional": true
  231. },
  232. "plyr": {
  233. "optional": true
  234. },
  235. "tinymce": {
  236. "optional": true
  237. },
  238. "tom-select": {
  239. "optional": true
  240. }
  241. },
  242. "release-it": {
  243. "hooks": {
  244. "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} && gulp build-demo",
  245. "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
  246. },
  247. "git": {
  248. "requireCleanWorkingDir": false,
  249. "addUntrackedFiles": true,
  250. "tagName": "v${version}"
  251. },
  252. "github": {
  253. "release": true
  254. }
  255. }
  256. }