package.json 6.6 KB
Newer Older
C
codecalm 已提交
1
{
M
Michal Wolny 已提交
2
  "name": "@tabler/core",
C
codecalm 已提交
3
  "version": "1.0.0-beta17",
C
chomik 已提交
4
  "description": "Premium and Open Source dashboard template with responsive and high quality UI.",
C
codecalm 已提交
5
  "homepage": "https://tabler.io",
C
codecalm 已提交
6
  "scripts": {
C
codecalm 已提交
7
    "start": "gulp start",
8
    "start-plugins": "gulp start --with-plugins",
C
codecalm 已提交
9
    "build": "gulp build",
C
codecalm 已提交
10
    "build-docs": "mkdir public && touch public/index.html && echo 'ok'",
C
codecalm 已提交
11
    "preview": "gulp build --preview",
C
codecalm 已提交
12
    "svg-optimize": "svgo -f svg/brand --pretty",
C
codecalm 已提交
13
    "unused-files": "node build/unused-files.js",
C
codecalm 已提交
14
    "release": "release-it",
C
codecalm 已提交
15
    "svg-icons": "gulp svg-icons",
C
codecalm 已提交
16
    "percy": "gulp build && npx percy snapshot demo",
17
    "bundlewatch": "bundlewatch",
P
Paweł Kuna 已提交
18 19
    "chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN",
    "storybook": "start-storybook -p 6006",
20
    "changelog": "gulp changelog",
P
Paweł Kuna 已提交
21 22 23
    "icons": "ncu -u @tabler/icons && npm install && gulp svg-icons && git add . && git commit -am \"update icons to v`npm info @tabler/icons version`\" && git push",
    "download-images": "node build/download-images.js",
    "optimize-images": "for i in ./src/static/photos/*.jpg; do convert \"$i\" -quality 80% \"${i%.jpg}.jpg\"; done"
C
codecalm 已提交
24 25 26
  },
  "repository": {
    "type": "git",
C
codecalm 已提交
27
    "url": "git+https://github.com/tabler/tabler.git"
C
codecalm 已提交
28
  },
29 30 31 32 33 34 35 36 37
  "keywords": [
    "css",
    "sass",
    "mobile-first",
    "responsive",
    "front-end",
    "framework",
    "web"
  ],
C
codecalm 已提交
38
  "author": "codecalm",
C
codecalm 已提交
39
  "license": "MIT",
C
codecalm 已提交
40
  "bugs": {
C
codecalm 已提交
41
    "url": "https://github.com/tabler/tabler/issues"
C
codecalm 已提交
42
  },
C
codecalm 已提交
43 44 45 46
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/codecalm"
  },
C
chomik 已提交
47
  "engines": {
48
    "node": ">=16"
C
chomik 已提交
49 50
  },
  "files": [
C
codecalm 已提交
51 52 53 54
    "dist/**/*",
    "src/js/**/*.{js,map}",
    "src/img/**/*.{svg}",
    "src/scss/**/*.scss"
C
chomik 已提交
55
  ],
C
codecalm 已提交
56
  "style": "dist/css/tabler.css",
C
codecalm 已提交
57
  "sass": "src/scss/tabler.scss",
58 59 60
  "unpkg": "dist/js/tabler.min.js",
  "umd:main": "dist/js/tabler.min.js",
  "module": "dist/js/tabler.esm.js",
61
  "main": "dist/js/tabler.js",
C
codecalm 已提交
62 63 64 65
  "bundlewatch": {
    "files": [
      {
        "path": "./dist/css/tabler.css",
66
        "maxSize": "75 kB"
C
codecalm 已提交
67 68 69
      },
      {
        "path": "./dist/css/tabler.min.css",
70
        "maxSize": "70 kB"
C
codecalm 已提交
71 72 73
      },
      {
        "path": "./dist/css/tabler.rtl.css",
74
        "maxSize": "75 kB"
C
codecalm 已提交
75 76 77
      },
      {
        "path": "./dist/css/tabler.rtl.min.css",
78
        "maxSize": "70 kB"
C
codecalm 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
      },
      {
        "path": "./dist/css/tabler-flags.css",
        "maxSize": "2 kB"
      },
      {
        "path": "./dist/css/tabler-flags.min.css",
        "maxSize": "2 kB"
      },
      {
        "path": "./dist/css/tabler-payments.css",
        "maxSize": "2 kB"
      },
      {
        "path": "./dist/css/tabler-payments.min.css",
        "maxSize": "2 kB"
      },
96 97 98 99 100 101 102 103
      {
        "path": "./dist/css/tabler-social.css",
        "maxSize": "2 kB"
      },
      {
        "path": "./dist/css/tabler-social.min.css",
        "maxSize": "2 kB"
      },
104 105 106 107 108 109 110 111
      {
        "path": "./dist/css/tabler-vendors.css",
        "maxSize": "7 kB"
      },
      {
        "path": "./dist/css/tabler-vendors.min.css",
        "maxSize": "6 kB"
      },
C
codecalm 已提交
112 113
      {
        "path": "./dist/js/tabler.js",
114
        "maxSize": "60 kB"
C
codecalm 已提交
115 116 117
      },
      {
        "path": "./dist/js/tabler.min.js",
118 119 120 121 122 123 124 125 126
        "maxSize": "45 kB"
      },
      {
        "path": "./dist/js/tabler.esm.js",
        "maxSize": "60 kB"
      },
      {
        "path": "./dist/js/tabler.esm.min.js",
        "maxSize": "45 kB"
C
codecalm 已提交
127 128 129
      }
    ]
  },
C
codecalm 已提交
130
  "devDependencies": {
131 132 133 134
    "@babel/core": "^7.21.8",
    "@babel/preset-env": "^7.21.5",
    "@rollup/plugin-commonjs": "^24.1.0",
    "@rollup/plugin-node-resolve": "^15.0.2",
135
    "@rollup/plugin-replace": "^5.0.2",
P
Paweł Kuna 已提交
136
    "@rollup/pluginutils": "^5.0.2",
C
codecalm 已提交
137
    "@rollup/stream": "^2.0.0",
C
codecalm 已提交
138
    "@tabler/icons": "^2.17.0",
139
    "apexcharts": "^3.40.0",
P
Paweł Kuna 已提交
140
    "autoprefixer": "^10.4.14",
P
Paweł Kuna 已提交
141
    "autosize": "^6.0.1",
142
    "browser-sync": "^2.29.1",
P
Paweł Kuna 已提交
143
    "bundlewatch": "^0.3.3",
P
Paweł Kuna 已提交
144
    "choices.js": "^10.2.0",
145 146
    "chromatic": "^6.17.4",
    "countup.js": "^2.6.2",
C
codecalm 已提交
147
    "cross-spawn": "^7.0.3",
P
Paweł Kuna 已提交
148
    "dropzone": "^6.0.0-beta.2",
P
Paweł Kuna 已提交
149
    "flatpickr": "^4.6.13",
P
Paweł Kuna 已提交
150
    "fslightbox": "^3.4.1",
C
codecalm 已提交
151
    "gulp": "^4.0.2",
C
codecalm 已提交
152
    "gulp-clean": "^0.4.0",
C
codecalm 已提交
153
    "gulp-clean-css": "^4.3.0",
154
    "gulp-debug": "^4.0.0",
C
codecalm 已提交
155
    "gulp-header": "^2.0.9",
C
codecalm 已提交
156
    "gulp-postcss": "^9.0.1",
157
    "gulp-purgecss": "^5.0.0",
C
codecalm 已提交
158
    "gulp-rename": "^2.0.0",
P
Paweł Kuna 已提交
159
    "gulp-rtlcss": "^2.0.0",
P
Paweł Kuna 已提交
160
    "gulp-sass": "^5.1.0",
161
    "gulp-terser": "^2.1.0",
P
Paweł Kuna 已提交
162
    "imageoptim-cli": "^3.0.7",
163 164
    "imask": "^6.6.1",
    "jsvectormap": "^1.5.3",
165
    "list.js": "^2.3.1",
166
    "litepicker": "^2.0.12",
P
Paweł Kuna 已提交
167
    "nouislider": "^15.7.0",
168 169 170
    "plyr": "^3.7.8",
    "postcss": "^8.4.23",
    "release-it": "^15.10.3",
P
Paweł Kuna 已提交
171
    "request": "^2.88.2",
172
    "rollup": "2.79.1",
C
codecalm 已提交
173
    "rollup-plugin-babel": "^4.4.0",
C
codecalm 已提交
174
    "rollup-plugin-cleanup": "^3.2.1",
175 176
    "sass": "^1.62.1",
    "tinymce": "^6.4.2",
C
codecalm 已提交
177
    "tom-select": "^2.2.2",
C
codecalm 已提交
178 179
    "vinyl-buffer": "^1.0.1",
    "vinyl-source-stream": "^2.0.0",
180 181
    "yaml": "^2.2.2",
    "yargs": "^17.7.2"
C
chomik 已提交
182 183
  },
  "dependencies": {
184
    "@changesets/cli": "^2.26.1",
185 186
    "@popperjs/core": "^2.11.7",
    "bootstrap": "5.3.0-alpha3"
187 188
  },
  "peerDependencies": {
189
    "apexcharts": "^3.40.0",
P
Paweł Kuna 已提交
190
    "autosize": "^6.0.1",
P
Paweł Kuna 已提交
191
    "choices.js": "^10.2.0",
192
    "countup.js": "^2.6.2",
193
    "dropzone": "^6.0.0-beta.2",
P
Paweł Kuna 已提交
194
    "flatpickr": "^4.6.13",
P
Paweł Kuna 已提交
195
    "fslightbox": "^3.4.1",
196 197
    "imask": "^6.6.1",
    "jsvectormap": "^1.5.3",
P
Paweł Kuna 已提交
198
    "list.js": "^2.3.1",
199
    "litepicker": "^2.0.12",
P
Paweł Kuna 已提交
200
    "nouislider": "^15.7.0",
201 202
    "plyr": "^3.7.8",
    "tinymce": "^6.4.2",
C
codecalm 已提交
203
    "tom-select": "^2.2.2"
204
  },
205 206 207 208 209 210 211 212 213 214 215 216 217
  "peerDependenciesMeta": {
    "apexcharts": {
      "optional": true
    },
    "autosize": {
      "optional": true
    },
    "choices.js": {
      "optional": true
    },
    "countup.js": {
      "optional": true
    },
P
Paweł Kuna 已提交
218 219 220
    "dropzone": {
      "optional": true
    },
221 222 223
    "flatpickr": {
      "optional": true
    },
P
Paweł Kuna 已提交
224 225 226
    "fslightbox": {
      "optional": true
    },
227 228 229
    "imask": {
      "optional": true
    },
C
codecalm 已提交
230 231 232
    "jsvectormap": {
      "optional": true
    },
C
codecalm 已提交
233 234 235
    "list.js": {
      "optional": true
    },
236 237 238 239 240 241
    "litepicker": {
      "optional": true
    },
    "nouislider": {
      "optional": true
    },
C
codecalm 已提交
242
    "plyr": {
243
      "optional": true
P
Paweł Kuna 已提交
244
    },
P
Paweł Kuna 已提交
245 246 247
    "tinymce": {
      "optional": true
    },
C
codecalm 已提交
248
    "tom-select": {
P
Paweł Kuna 已提交
249
      "optional": true
250 251
    }
  },
C
codecalm 已提交
252 253
  "release-it": {
    "hooks": {
254
      "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} && gulp build-demo",
C
codecalm 已提交
255 256 257 258 259 260 261 262 263 264
      "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
    },
    "git": {
      "requireCleanWorkingDir": false,
      "addUntrackedFiles": true,
      "tagName": "v${version}"
    },
    "github": {
      "release": true
    }
C
codecalm 已提交
265 266 267
  },
  "directories": {
    "doc": "docs"
C
codecalm 已提交
268
  }
C
codecalm 已提交
269
}