package.json 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. {
  2. "name": "@tabler/core",
  3. "version": "1.0.0-beta17",
  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. "build-docs": "mkdir public && touch public/index.html && echo 'ok'",
  11. "preview": "gulp build --preview",
  12. "svg-optimize": "svgo -f svg/brand --pretty",
  13. "unused-files": "node build/unused-files.js",
  14. "release": "release-it",
  15. "svg-icons": "gulp svg-icons",
  16. "percy": "gulp build && npx percy snapshot demo",
  17. "bundlewatch": "bundlewatch",
  18. "chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN",
  19. "storybook": "start-storybook -p 6006",
  20. "changelog": "gulp changelog",
  21. "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",
  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. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/tabler/tabler.git"
  28. },
  29. "keywords": [
  30. "css",
  31. "sass",
  32. "mobile-first",
  33. "responsive",
  34. "front-end",
  35. "framework",
  36. "web"
  37. ],
  38. "author": "codecalm",
  39. "license": "MIT",
  40. "bugs": {
  41. "url": "https://github.com/tabler/tabler/issues"
  42. },
  43. "funding": {
  44. "type": "github",
  45. "url": "https://github.com/sponsors/codecalm"
  46. },
  47. "engines": {
  48. "node": ">=16"
  49. },
  50. "files": [
  51. "dist/**/*",
  52. "src/js/**/*.{js,map}",
  53. "src/img/**/*.{svg}",
  54. "src/scss/**/*.scss"
  55. ],
  56. "style": "dist/css/tabler.css",
  57. "sass": "src/scss/tabler.scss",
  58. "unpkg": "dist/js/tabler.min.js",
  59. "umd:main": "dist/js/tabler.min.js",
  60. "module": "dist/js/tabler.esm.js",
  61. "main": "dist/js/tabler.js",
  62. "bundlewatch": {
  63. "files": [
  64. {
  65. "path": "./dist/css/tabler.css",
  66. "maxSize": "75 kB"
  67. },
  68. {
  69. "path": "./dist/css/tabler.min.css",
  70. "maxSize": "70 kB"
  71. },
  72. {
  73. "path": "./dist/css/tabler.rtl.css",
  74. "maxSize": "75 kB"
  75. },
  76. {
  77. "path": "./dist/css/tabler.rtl.min.css",
  78. "maxSize": "70 kB"
  79. },
  80. {
  81. "path": "./dist/css/tabler-flags.css",
  82. "maxSize": "2 kB"
  83. },
  84. {
  85. "path": "./dist/css/tabler-flags.min.css",
  86. "maxSize": "2 kB"
  87. },
  88. {
  89. "path": "./dist/css/tabler-payments.css",
  90. "maxSize": "2 kB"
  91. },
  92. {
  93. "path": "./dist/css/tabler-payments.min.css",
  94. "maxSize": "2 kB"
  95. },
  96. {
  97. "path": "./dist/css/tabler-social.css",
  98. "maxSize": "2 kB"
  99. },
  100. {
  101. "path": "./dist/css/tabler-social.min.css",
  102. "maxSize": "2 kB"
  103. },
  104. {
  105. "path": "./dist/css/tabler-vendors.css",
  106. "maxSize": "7 kB"
  107. },
  108. {
  109. "path": "./dist/css/tabler-vendors.min.css",
  110. "maxSize": "6 kB"
  111. },
  112. {
  113. "path": "./dist/js/tabler.js",
  114. "maxSize": "60 kB"
  115. },
  116. {
  117. "path": "./dist/js/tabler.min.js",
  118. "maxSize": "45 kB"
  119. },
  120. {
  121. "path": "./dist/js/tabler.esm.js",
  122. "maxSize": "60 kB"
  123. },
  124. {
  125. "path": "./dist/js/tabler.esm.min.js",
  126. "maxSize": "45 kB"
  127. }
  128. ]
  129. },
  130. "devDependencies": {
  131. "@babel/core": "^7.21.8",
  132. "@babel/preset-env": "^7.21.5",
  133. "@rollup/plugin-commonjs": "^24.1.0",
  134. "@rollup/plugin-node-resolve": "^15.0.2",
  135. "@rollup/plugin-replace": "^5.0.2",
  136. "@rollup/pluginutils": "^5.0.2",
  137. "@rollup/stream": "^2.0.0",
  138. "@tabler/icons": "^2.17.0",
  139. "all-contributors-cli": "^6.25.0",
  140. "apexcharts": "^3.40.0",
  141. "autoprefixer": "^10.4.14",
  142. "autosize": "^6.0.1",
  143. "browser-sync": "^2.29.1",
  144. "bundlewatch": "^0.3.3",
  145. "choices.js": "^10.2.0",
  146. "chromatic": "^6.17.4",
  147. "countup.js": "^2.6.2",
  148. "cross-spawn": "^7.0.3",
  149. "dropzone": "^6.0.0-beta.2",
  150. "flatpickr": "^4.6.13",
  151. "fslightbox": "^3.4.1",
  152. "gulp": "^4.0.2",
  153. "gulp-clean": "^0.4.0",
  154. "gulp-clean-css": "^4.3.0",
  155. "gulp-debug": "^4.0.0",
  156. "gulp-header": "^2.0.9",
  157. "gulp-postcss": "^9.0.1",
  158. "gulp-purgecss": "^5.0.0",
  159. "gulp-rename": "^2.0.0",
  160. "gulp-rtlcss": "^2.0.0",
  161. "gulp-sass": "^5.1.0",
  162. "gulp-terser": "^2.1.0",
  163. "imageoptim-cli": "^3.0.7",
  164. "imask": "^6.6.1",
  165. "jsvectormap": "^1.5.3",
  166. "list.js": "^2.3.1",
  167. "litepicker": "^2.0.12",
  168. "nouislider": "^15.7.0",
  169. "plyr": "^3.7.8",
  170. "postcss": "^8.4.23",
  171. "release-it": "^15.10.3",
  172. "request": "^2.88.2",
  173. "rollup": "2.79.1",
  174. "rollup-plugin-babel": "^4.4.0",
  175. "rollup-plugin-cleanup": "^3.2.1",
  176. "sass": "^1.62.1",
  177. "tinymce": "^6.4.2",
  178. "tom-select": "^2.2.2",
  179. "vinyl-buffer": "^1.0.1",
  180. "vinyl-source-stream": "^2.0.0",
  181. "yaml": "^2.2.2",
  182. "yargs": "^17.7.2"
  183. },
  184. "dependencies": {
  185. "@changesets/cli": "^2.26.1",
  186. "@popperjs/core": "^2.11.7",
  187. "bootstrap": "5.3.0-alpha3"
  188. },
  189. "peerDependencies": {
  190. "apexcharts": "^3.40.0",
  191. "autosize": "^6.0.1",
  192. "choices.js": "^10.2.0",
  193. "countup.js": "^2.6.2",
  194. "dropzone": "^6.0.0-beta.2",
  195. "flatpickr": "^4.6.13",
  196. "fslightbox": "^3.4.1",
  197. "imask": "^6.6.1",
  198. "jsvectormap": "^1.5.3",
  199. "list.js": "^2.3.1",
  200. "litepicker": "^2.0.12",
  201. "nouislider": "^15.7.0",
  202. "plyr": "^3.7.8",
  203. "tinymce": "^6.4.2",
  204. "tom-select": "^2.2.2"
  205. },
  206. "peerDependenciesMeta": {
  207. "apexcharts": {
  208. "optional": true
  209. },
  210. "autosize": {
  211. "optional": true
  212. },
  213. "choices.js": {
  214. "optional": true
  215. },
  216. "countup.js": {
  217. "optional": true
  218. },
  219. "dropzone": {
  220. "optional": true
  221. },
  222. "flatpickr": {
  223. "optional": true
  224. },
  225. "fslightbox": {
  226. "optional": true
  227. },
  228. "imask": {
  229. "optional": true
  230. },
  231. "jsvectormap": {
  232. "optional": true
  233. },
  234. "list.js": {
  235. "optional": true
  236. },
  237. "litepicker": {
  238. "optional": true
  239. },
  240. "nouislider": {
  241. "optional": true
  242. },
  243. "plyr": {
  244. "optional": true
  245. },
  246. "tinymce": {
  247. "optional": true
  248. },
  249. "tom-select": {
  250. "optional": true
  251. }
  252. },
  253. "release-it": {
  254. "hooks": {
  255. "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} && gulp build-demo",
  256. "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
  257. },
  258. "git": {
  259. "requireCleanWorkingDir": false,
  260. "addUntrackedFiles": true,
  261. "tagName": "v${version}"
  262. },
  263. "github": {
  264. "release": true
  265. }
  266. },
  267. "directories": {
  268. "doc": "docs"
  269. }
  270. }