package.json 7.1 KB

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