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. "build:html": "eleventy",
  27. "watch:html": "eleventy --watch"
  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": ">=20"
  53. },
  54. "files": [
  55. "docs/**/*",
  56. "dist/**/*",
  57. "src/js/**/*.{js,map}",
  58. "src/img/**/*.{svg}",
  59. "src/scss/**/*.scss"
  60. ],
  61. "style": "dist/css/tabler.css",
  62. "sass": "src/scss/tabler.scss",
  63. "unpkg": "dist/js/tabler.min.js",
  64. "umd:main": "dist/js/tabler.min.js",
  65. "module": "dist/js/tabler.esm.js",
  66. "main": "dist/js/tabler.js",
  67. "bundlewatch": {
  68. "files": [
  69. {
  70. "path": "./dist/css/tabler.css",
  71. "maxSize": "75 kB"
  72. },
  73. {
  74. "path": "./dist/css/tabler.min.css",
  75. "maxSize": "70 kB"
  76. },
  77. {
  78. "path": "./dist/css/tabler.rtl.css",
  79. "maxSize": "75 kB"
  80. },
  81. {
  82. "path": "./dist/css/tabler.rtl.min.css",
  83. "maxSize": "70 kB"
  84. },
  85. {
  86. "path": "./dist/css/tabler-flags.css",
  87. "maxSize": "2 kB"
  88. },
  89. {
  90. "path": "./dist/css/tabler-flags.min.css",
  91. "maxSize": "2 kB"
  92. },
  93. {
  94. "path": "./dist/css/tabler-payments.css",
  95. "maxSize": "2 kB"
  96. },
  97. {
  98. "path": "./dist/css/tabler-payments.min.css",
  99. "maxSize": "2 kB"
  100. },
  101. {
  102. "path": "./dist/css/tabler-socials.css",
  103. "maxSize": "2 kB"
  104. },
  105. {
  106. "path": "./dist/css/tabler-socials.min.css",
  107. "maxSize": "2 kB"
  108. },
  109. {
  110. "path": "./dist/css/tabler-vendors.css",
  111. "maxSize": "7.5 kB"
  112. },
  113. {
  114. "path": "./dist/css/tabler-vendors.min.css",
  115. "maxSize": "6.5 kB"
  116. },
  117. {
  118. "path": "./dist/js/tabler.js",
  119. "maxSize": "60 kB"
  120. },
  121. {
  122. "path": "./dist/js/tabler.min.js",
  123. "maxSize": "45 kB"
  124. },
  125. {
  126. "path": "./dist/js/tabler.esm.js",
  127. "maxSize": "60 kB"
  128. },
  129. {
  130. "path": "./dist/js/tabler.esm.min.js",
  131. "maxSize": "45 kB"
  132. }
  133. ]
  134. },
  135. "devDependencies": {
  136. "@11ty/eleventy": "^3.0.0",
  137. "@babel/core": "^7.26.0",
  138. "@babel/preset-env": "^7.26.0",
  139. "@changesets/cli": "^2.27.11",
  140. "@rollup/plugin-commonjs": "^24.1.0",
  141. "@rollup/plugin-node-resolve": "^15.3.1",
  142. "@rollup/plugin-replace": "^5.0.7",
  143. "@rollup/stream": "^2.0.0",
  144. "apexcharts": "^4.3.0",
  145. "autoprefixer": "^10.4.20",
  146. "autosize": "^6.0.1",
  147. "browser-sync": "^2.29.3",
  148. "bundlewatch": "^0.4.0",
  149. "choices.js": "^11.0.3",
  150. "countup.js": "^2.8.0",
  151. "cross-spawn": "^7.0.6",
  152. "dropzone": "^6.0.0-beta.2",
  153. "flatpickr": "^4.6.13",
  154. "fslightbox": "^3.4.2",
  155. "glob": "^10.4.5",
  156. "gulp": "^4.0.2",
  157. "gulp-clean": "^0.4.0",
  158. "gulp-clean-css": "^4.3.0",
  159. "gulp-debug": "^4.0.0",
  160. "gulp-header": "^2.0.9",
  161. "gulp-postcss": "^9.1.0",
  162. "gulp-purgecss": "^5.0.0",
  163. "gulp-rename": "^2.0.0",
  164. "gulp-replace": "^1.1.4",
  165. "gulp-rtlcss": "^2.0.0",
  166. "gulp-sass": "^5.1.0",
  167. "gulp-terser": "^2.1.0",
  168. "html-minifier": "^4.0.0",
  169. "imageoptim-cli": "^3.1.9",
  170. "imask": "^7.6.1",
  171. "js-beautify": "^1.15.1",
  172. "jsvectormap": "^1.6.0",
  173. "list.js": "^2.3.1",
  174. "litepicker": "^2.0.12",
  175. "nouislider": "^15.8.1",
  176. "plyr": "^3.7.8",
  177. "postcss": "^8.5.1",
  178. "prettier": "^2.8.8",
  179. "release-it": "^15.11.0",
  180. "request": "^2.88.2",
  181. "rollup": "2.79.2",
  182. "rollup-plugin-babel": "^4.4.0",
  183. "rollup-plugin-cleanup": "^3.2.1",
  184. "sass": "1.71.0",
  185. "star-rating.js": "^4.3.1",
  186. "tinymce": "^7.6.0",
  187. "tom-select": "^2.4.1",
  188. "typed.js": "^2.1.0",
  189. "vinyl-buffer": "^1.0.1",
  190. "vinyl-source-stream": "^2.0.0",
  191. "yargs": "^17.7.2"
  192. },
  193. "dependencies": {
  194. "@popperjs/core": "^2.11.8",
  195. "@tabler/icons": "^3.29.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. }