package.json 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. {
  2. "name": "@tabler/core",
  3. "version": "1.0.0-beta19",
  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. "prerelease": "gulp build && gulp build-demo",
  16. "release": "changeset publish",
  17. "svg-icons": "gulp svg-icons",
  18. "percy": "gulp build && npx percy snapshot demo",
  19. "bundlewatch": "bundlewatch",
  20. "chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN",
  21. "storybook": "start-storybook -p 6006",
  22. "changelog": "gulp changelog",
  23. "icons": "ncu -u @tabler/icons && pnpm install && gulp svg-icons && git add . && git commit -am \"update icons to v`pnpm info @tabler/icons version`\" && git push",
  24. "download-images": "node build/download-images.js",
  25. "optimize-images": "for i in ./src/static/photos/*.jpg; do convert \"$i\" -quality 80% \"${i%.jpg}.jpg\"; done",
  26. "format:check": "prettier --check src/**/*.{js,scss} --cache",
  27. "format:write": "prettier --write src/**/*.{js,scss} --cache"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/tabler/tabler.git"
  32. },
  33. "keywords": [
  34. "css",
  35. "sass",
  36. "mobile-first",
  37. "responsive",
  38. "front-end",
  39. "framework",
  40. "web"
  41. ],
  42. "author": "codecalm",
  43. "license": "MIT",
  44. "bugs": {
  45. "url": "https://github.com/tabler/tabler/issues"
  46. },
  47. "funding": {
  48. "type": "github",
  49. "url": "https://github.com/sponsors/codecalm"
  50. },
  51. "engines": {
  52. "node": ">=18"
  53. },
  54. "files": [
  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.21.8",
  136. "@babel/preset-env": "^7.21.5",
  137. "@changesets/cli": "^2.26.1",
  138. "@melloware/coloris": "^0.19.1",
  139. "@rollup/plugin-commonjs": "^24.1.0",
  140. "@rollup/plugin-node-resolve": "^15.0.2",
  141. "@rollup/plugin-replace": "^5.0.2",
  142. "@rollup/pluginutils": "^5.0.2",
  143. "@rollup/stream": "^2.0.0",
  144. "@shopify/prettier-plugin-liquid": "^1.0.6",
  145. "all-contributors-cli": "^6.25.0",
  146. "apexcharts": "^3.40.0",
  147. "autoprefixer": "^10.4.14",
  148. "autosize": "^6.0.1",
  149. "browser-sync": "^2.29.1",
  150. "bundlewatch": "^0.3.3",
  151. "choices.js": "^10.2.0",
  152. "chromatic": "^6.17.4",
  153. "countup.js": "^2.6.2",
  154. "cross-spawn": "^7.0.3",
  155. "dropzone": "^6.0.0-beta.2",
  156. "flatpickr": "^4.6.13",
  157. "fslightbox": "^3.4.1",
  158. "gulp": "^4.0.2",
  159. "gulp-clean": "^0.4.0",
  160. "gulp-clean-css": "^4.3.0",
  161. "gulp-debug": "^4.0.0",
  162. "gulp-header": "^2.0.9",
  163. "gulp-postcss": "^9.0.1",
  164. "gulp-purgecss": "^5.0.0",
  165. "gulp-rename": "^2.0.0",
  166. "gulp-rtlcss": "^2.0.0",
  167. "gulp-sass": "^5.1.0",
  168. "gulp-terser": "^2.1.0",
  169. "imageoptim-cli": "^3.0.7",
  170. "imask": "^6.6.1",
  171. "jsvectormap": "^1.5.3",
  172. "list.js": "^2.3.1",
  173. "litepicker": "^2.0.12",
  174. "nouislider": "^15.7.0",
  175. "plyr": "^3.7.8",
  176. "postcss": "^8.4.23",
  177. "prettier": "^2.8.8",
  178. "request": "^2.88.2",
  179. "rollup": "2.79.1",
  180. "rollup-plugin-babel": "^4.4.0",
  181. "rollup-plugin-cleanup": "^3.2.1",
  182. "sass": "^1.62.1",
  183. "star-rating.js": "^4.3.0",
  184. "tinymce": "^6.4.2",
  185. "tom-select": "^2.2.2",
  186. "vinyl-buffer": "^1.0.1",
  187. "vinyl-source-stream": "^2.0.0",
  188. "yaml": "^2.2.2",
  189. "yargs": "^17.7.2"
  190. },
  191. "dependencies": {
  192. "@changesets/changelog-github": "^0.4.8",
  193. "@popperjs/core": "^2.11.8",
  194. "@tabler/icons": "^2.25.0",
  195. "bootstrap": "5.3.0"
  196. },
  197. "peerDependencies": {
  198. "@melloware/coloris": "^0.19.1",
  199. "apexcharts": "^3.40.0",
  200. "autosize": "^6.0.1",
  201. "choices.js": "^10.2.0",
  202. "countup.js": "^2.6.2",
  203. "dropzone": "^6.0.0-beta.2",
  204. "flatpickr": "^4.6.13",
  205. "fslightbox": "^3.4.1",
  206. "imask": "^6.6.1",
  207. "jsvectormap": "^1.5.3",
  208. "list.js": "^2.3.1",
  209. "litepicker": "^2.0.12",
  210. "nouislider": "^15.7.0",
  211. "plyr": "^3.7.8",
  212. "star-rating.js": "^4.3.0",
  213. "tinymce": "^6.4.2",
  214. "tom-select": "^2.2.2"
  215. },
  216. "peerDependenciesMeta": {
  217. "@melloware/coloris": {
  218. "optional": true
  219. },
  220. "apexcharts": {
  221. "optional": true
  222. },
  223. "autosize": {
  224. "optional": true
  225. },
  226. "choices.js": {
  227. "optional": true
  228. },
  229. "countup.js": {
  230. "optional": true
  231. },
  232. "dropzone": {
  233. "optional": true
  234. },
  235. "flatpickr": {
  236. "optional": true
  237. },
  238. "fslightbox": {
  239. "optional": true
  240. },
  241. "imask": {
  242. "optional": true
  243. },
  244. "jsvectormap": {
  245. "optional": true
  246. },
  247. "list.js": {
  248. "optional": true
  249. },
  250. "litepicker": {
  251. "optional": true
  252. },
  253. "nouislider": {
  254. "optional": true
  255. },
  256. "plyr": {
  257. "optional": true
  258. },
  259. "tinymce": {
  260. "optional": true
  261. },
  262. "tom-select": {
  263. "optional": true
  264. },
  265. "star-rating.js": {
  266. "optional": true
  267. }
  268. },
  269. "directories": {
  270. "doc": "docs"
  271. }
  272. }