package.json 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. {
  2. "name": "@tabler/core",
  3. "version": "1.0.0-beta24",
  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": "git checkout dev && BRANCH_NAME=\"dev-tabler-icons-`pnpm info @tabler/icons version`\" && git branch $BRANCH_NAME && git checkout $BRANCH_NAME && ncu -u @tabler/icons && pnpm install && pnpm run svg-icons && git add . && git commit -am \"update icons to v`pnpm info @tabler/icons version`\" && git push origin $BRANCH_NAME && git checkout dev",
  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": "20"
  51. },
  52. "files": [
  53. "docs/**/*",
  54. "dist/**/*",
  55. "src/js/**/*.{js,map}",
  56. "src/img/**/*.{svg}",
  57. "src/scss/**/*.scss"
  58. ],
  59. "style": "dist/css/tabler.css",
  60. "sass": "src/scss/tabler.scss",
  61. "unpkg": "dist/js/tabler.min.js",
  62. "umd:main": "dist/js/tabler.min.js",
  63. "module": "dist/js/tabler.esm.js",
  64. "main": "dist/js/tabler.js",
  65. "bundlewatch": {
  66. "files": [
  67. {
  68. "path": "./dist/css/tabler.css",
  69. "maxSize": "75 kB"
  70. },
  71. {
  72. "path": "./dist/css/tabler.min.css",
  73. "maxSize": "70 kB"
  74. },
  75. {
  76. "path": "./dist/css/tabler.rtl.css",
  77. "maxSize": "75 kB"
  78. },
  79. {
  80. "path": "./dist/css/tabler.rtl.min.css",
  81. "maxSize": "70 kB"
  82. },
  83. {
  84. "path": "./dist/css/tabler-flags.css",
  85. "maxSize": "2 kB"
  86. },
  87. {
  88. "path": "./dist/css/tabler-flags.min.css",
  89. "maxSize": "2 kB"
  90. },
  91. {
  92. "path": "./dist/css/tabler-payments.css",
  93. "maxSize": "2 kB"
  94. },
  95. {
  96. "path": "./dist/css/tabler-payments.min.css",
  97. "maxSize": "2 kB"
  98. },
  99. {
  100. "path": "./dist/css/tabler-socials.css",
  101. "maxSize": "2 kB"
  102. },
  103. {
  104. "path": "./dist/css/tabler-socials.min.css",
  105. "maxSize": "2 kB"
  106. },
  107. {
  108. "path": "./dist/css/tabler-vendors.css",
  109. "maxSize": "7.5 kB"
  110. },
  111. {
  112. "path": "./dist/css/tabler-vendors.min.css",
  113. "maxSize": "6.5 kB"
  114. },
  115. {
  116. "path": "./dist/js/tabler.js",
  117. "maxSize": "60 kB"
  118. },
  119. {
  120. "path": "./dist/js/tabler.min.js",
  121. "maxSize": "45 kB"
  122. },
  123. {
  124. "path": "./dist/js/tabler.esm.js",
  125. "maxSize": "60 kB"
  126. },
  127. {
  128. "path": "./dist/js/tabler.esm.min.js",
  129. "maxSize": "45 kB"
  130. }
  131. ]
  132. },
  133. "devDependencies": {
  134. "@babel/core": "^7.26.0",
  135. "@babel/preset-env": "^7.26.0",
  136. "@changesets/cli": "^2.27.11",
  137. "@rollup/plugin-commonjs": "^24.1.0",
  138. "@rollup/plugin-node-resolve": "^15.3.1",
  139. "@rollup/plugin-replace": "^5.0.7",
  140. "@rollup/pluginutils": "^5.1.4",
  141. "@rollup/stream": "^2.0.0",
  142. "@shopify/prettier-plugin-liquid": "^1.6.3",
  143. "apexcharts": "^3.54.1",
  144. "autoprefixer": "^10.4.20",
  145. "autosize": "^6.0.1",
  146. "browser-sync": "^2.29.3",
  147. "bundlewatch": "^0.4.0",
  148. "choices.js": "^10.2.0",
  149. "countup.js": "^2.8.0",
  150. "cross-spawn": "^7.0.6",
  151. "dropzone": "^6.0.0-beta.2",
  152. "flatpickr": "^4.6.13",
  153. "fslightbox": "^3.4.2",
  154. "glob": "^10.4.5",
  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-replace": "^1.1.4",
  164. "gulp-rtlcss": "^2.0.0",
  165. "gulp-sass": "^5.1.0",
  166. "gulp-terser": "^2.1.0",
  167. "imageoptim-cli": "^3.1.9",
  168. "imask": "^7.6.1",
  169. "js-beautify": "^1.15.1",
  170. "jsvectormap": "^1.6.0",
  171. "list.js": "^2.3.1",
  172. "litepicker": "^2.0.12",
  173. "nouislider": "^15.8.1",
  174. "plyr": "^3.7.8",
  175. "postcss": "^8.4.49",
  176. "prettier": "^2.8.8",
  177. "release-it": "^15.11.0",
  178. "request": "^2.88.2",
  179. "rollup": "2.79.2",
  180. "rollup-plugin-babel": "^4.4.0",
  181. "rollup-plugin-cleanup": "^3.2.1",
  182. "sass": "1.71.1",
  183. "star-rating.js": "^4.3.1",
  184. "tinymce": "^7.5.1",
  185. "tom-select": "^2.4.1",
  186. "typed.js": "^2.1.0",
  187. "vinyl-buffer": "^1.0.1",
  188. "vinyl-source-stream": "^2.0.0",
  189. "yaml": "^2.6.1",
  190. "yargs": "^17.7.2",
  191. "zod": "^3.23.8"
  192. },
  193. "dependencies": {
  194. "@popperjs/core": "^2.11.8",
  195. "@tabler/icons": "^3.26.0",
  196. "bootstrap": "5.3.3"
  197. },
  198. "peerDependencies": {
  199. "@melloware/coloris": "^0.19.1",
  200. "apexcharts": "^3.40.0",
  201. "autosize": "^6.0.1",
  202. "choices.js": "^10.2.0",
  203. "countup.js": "^2.6.2",
  204. "dropzone": "^6.0.0-beta.2",
  205. "flatpickr": "^4.6.13",
  206. "fslightbox": "^3.4.1",
  207. "imask": "^6.6.1",
  208. "jsvectormap": "^1.5.3",
  209. "list.js": "^2.3.1",
  210. "litepicker": "^2.0.12",
  211. "nouislider": "^15.7.0",
  212. "plyr": "^3.7.8",
  213. "star-rating.js": "^4.3.0",
  214. "tinymce": "^6.4.2 || ^7.0.0",
  215. "tom-select": "^2.2.2",
  216. "typed.js": "^2.1.0"
  217. },
  218. "peerDependenciesMeta": {
  219. "@melloware/coloris": {
  220. "optional": true
  221. },
  222. "apexcharts": {
  223. "optional": true
  224. },
  225. "autosize": {
  226. "optional": true
  227. },
  228. "choices.js": {
  229. "optional": true
  230. },
  231. "countup.js": {
  232. "optional": true
  233. },
  234. "dropzone": {
  235. "optional": true
  236. },
  237. "flatpickr": {
  238. "optional": true
  239. },
  240. "fslightbox": {
  241. "optional": true
  242. },
  243. "imask": {
  244. "optional": true
  245. },
  246. "jsvectormap": {
  247. "optional": true
  248. },
  249. "list.js": {
  250. "optional": true
  251. },
  252. "litepicker": {
  253. "optional": true
  254. },
  255. "nouislider": {
  256. "optional": true
  257. },
  258. "plyr": {
  259. "optional": true
  260. },
  261. "tinymce": {
  262. "optional": true
  263. },
  264. "tom-select": {
  265. "optional": true
  266. },
  267. "star-rating.js": {
  268. "optional": true
  269. }
  270. },
  271. "release-it": {
  272. "hooks": {
  273. "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} && gulp build-demo",
  274. "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
  275. },
  276. "git": {
  277. "requireCleanWorkingDir": false,
  278. "addUntrackedFiles": true,
  279. "tagName": "v${version}"
  280. },
  281. "github": {
  282. "release": true
  283. }
  284. },
  285. "directories": {
  286. "doc": "docs"
  287. }
  288. }