package.json 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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",
  8. "start": "gulp start",
  9. "build": "gulp build",
  10. "build-docs": "mkdir public && touch public/index.html && echo 'ok'",
  11. "preview": "gulp build --preview",
  12. "svg-optimize": "svgo -f svg/brand --pretty",
  13. "unused-files": "node .build/unused-files.js",
  14. "release": "release-it",
  15. "svg-icons": "node .build/import-icons.js",
  16. "bundlewatch": "bundlewatch",
  17. "storybook": "start-storybook -p 6006",
  18. "changelog": "node .build/changelog.js",
  19. "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",
  20. "download-images": "node .build/download-images.js",
  21. "optimize-images": "for i in ./src/static/photos/*.jpg; do convert \"$i\" -quality 80% \"${i%.jpg}.jpg\"; done",
  22. "format:check": "prettier --check src/**/*.{js,scss} --cache",
  23. "format:write": "prettier --write src/**/*.{js,scss} --cache",
  24. "illustrations": "node .build/import-illustrations.js",
  25. "build:html": "eleventy",
  26. "watch:html": "eleventy --watch --incremental"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/tabler/tabler.git"
  31. },
  32. "keywords": [
  33. "css",
  34. "sass",
  35. "mobile-first",
  36. "responsive",
  37. "front-end",
  38. "framework",
  39. "web"
  40. ],
  41. "author": "codecalm",
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/tabler/tabler/issues"
  45. },
  46. "funding": {
  47. "type": "github",
  48. "url": "https://github.com/sponsors/codecalm"
  49. },
  50. "engines": {
  51. "node": ">=20"
  52. },
  53. "files": [
  54. "docs/**/*",
  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-socials.css",
  102. "maxSize": "2 kB"
  103. },
  104. {
  105. "path": "./dist/css/tabler-socials.min.css",
  106. "maxSize": "2 kB"
  107. },
  108. {
  109. "path": "./dist/css/tabler-vendors.css",
  110. "maxSize": "7.5 kB"
  111. },
  112. {
  113. "path": "./dist/css/tabler-vendors.min.css",
  114. "maxSize": "6.5 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. "@11ty/eleventy": "^3.0.0",
  136. "@babel/core": "^7.26.0",
  137. "@babel/preset-env": "^7.26.0",
  138. "@changesets/cli": "^2.27.11",
  139. "@rollup/plugin-commonjs": "^24.1.0",
  140. "@rollup/plugin-node-resolve": "^15.3.1",
  141. "@rollup/plugin-replace": "^5.0.7",
  142. "@rollup/stream": "^2.0.0",
  143. "apexcharts": "^4.3.0",
  144. "autoprefixer": "^10.4.20",
  145. "autosize": "^6.0.1",
  146. "browser-sync": "^2.29.3",
  147. "bundlewatch": "^0.4.0",
  148. "choices.js": "^11.0.3",
  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.1.0",
  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. "html-minifier": "^4.0.0",
  168. "imageoptim-cli": "^3.1.9",
  169. "imask": "^7.6.1",
  170. "js-beautify": "^1.15.1",
  171. "jsvectormap": "^1.6.0",
  172. "list.js": "^2.3.1",
  173. "litepicker": "^2.0.12",
  174. "nouislider": "^15.8.1",
  175. "plyr": "^3.7.8",
  176. "postcss": "^8.5.1",
  177. "prettier": "^2.8.8",
  178. "release-it": "^15.11.0",
  179. "request": "^2.88.2",
  180. "rollup": "2.79.2",
  181. "rollup-plugin-babel": "^4.4.0",
  182. "rollup-plugin-cleanup": "^3.2.1",
  183. "sass": "1.71.0",
  184. "star-rating.js": "^4.3.1",
  185. "tinymce": "^7.6.0",
  186. "tom-select": "^2.4.1",
  187. "typed.js": "^2.1.0",
  188. "vinyl-buffer": "^1.0.1",
  189. "vinyl-source-stream": "^2.0.0",
  190. "yargs": "^17.7.2"
  191. },
  192. "dependencies": {
  193. "@popperjs/core": "^2.11.8",
  194. "@tabler/icons": "^3.29.0",
  195. "bootstrap": "5.3.3"
  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 || ^7.0.0",
  214. "tom-select": "^2.2.2",
  215. "typed.js": "^2.1.0"
  216. },
  217. "peerDependenciesMeta": {
  218. "@melloware/coloris": {
  219. "optional": true
  220. },
  221. "apexcharts": {
  222. "optional": true
  223. },
  224. "autosize": {
  225. "optional": true
  226. },
  227. "choices.js": {
  228. "optional": true
  229. },
  230. "countup.js": {
  231. "optional": true
  232. },
  233. "dropzone": {
  234. "optional": true
  235. },
  236. "flatpickr": {
  237. "optional": true
  238. },
  239. "fslightbox": {
  240. "optional": true
  241. },
  242. "imask": {
  243. "optional": true
  244. },
  245. "jsvectormap": {
  246. "optional": true
  247. },
  248. "list.js": {
  249. "optional": true
  250. },
  251. "litepicker": {
  252. "optional": true
  253. },
  254. "nouislider": {
  255. "optional": true
  256. },
  257. "plyr": {
  258. "optional": true
  259. },
  260. "tinymce": {
  261. "optional": true
  262. },
  263. "tom-select": {
  264. "optional": true
  265. },
  266. "star-rating.js": {
  267. "optional": true
  268. }
  269. },
  270. "release-it": {
  271. "hooks": {
  272. "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} && gulp build-demo",
  273. "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
  274. },
  275. "git": {
  276. "requireCleanWorkingDir": false,
  277. "addUntrackedFiles": true,
  278. "tagName": "v${version}"
  279. },
  280. "github": {
  281. "release": true
  282. }
  283. },
  284. "directories": {
  285. "doc": "docs"
  286. }
  287. }