package.json 7.0 KB

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