package.json 6.7 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": ">=18"
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",
C
codecalm 已提交
139
    "all-contributors-cli": "^6.25.0",
140
    "apexcharts": "^3.40.0",
P
Paweł Kuna 已提交
141
    "autoprefixer": "^10.4.14",
P
Paweł Kuna 已提交
142
    "autosize": "^6.0.1",
143
    "browser-sync": "^2.29.1",
P
Paweł Kuna 已提交
144
    "bundlewatch": "^0.3.3",
P
Paweł Kuna 已提交
145
    "choices.js": "^10.2.0",
146 147
    "chromatic": "^6.17.4",
    "countup.js": "^2.6.2",
C
codecalm 已提交
148
    "cross-spawn": "^7.0.3",
P
Paweł Kuna 已提交
149
    "dropzone": "^6.0.0-beta.2",
P
Paweł Kuna 已提交
150
    "flatpickr": "^4.6.13",
P
Paweł Kuna 已提交
151
    "fslightbox": "^3.4.1",
C
codecalm 已提交
152
    "gulp": "^4.0.2",
C
codecalm 已提交
153
    "gulp-clean": "^0.4.0",
C
codecalm 已提交
154
    "gulp-clean-css": "^4.3.0",
155
    "gulp-debug": "^4.0.0",
C
codecalm 已提交
156
    "gulp-header": "^2.0.9",
C
codecalm 已提交
157
    "gulp-postcss": "^9.0.1",
158
    "gulp-purgecss": "^5.0.0",
C
codecalm 已提交
159
    "gulp-rename": "^2.0.0",
P
Paweł Kuna 已提交
160
    "gulp-rtlcss": "^2.0.0",
P
Paweł Kuna 已提交
161
    "gulp-sass": "^5.1.0",
162
    "gulp-terser": "^2.1.0",
P
Paweł Kuna 已提交
163
    "imageoptim-cli": "^3.0.7",
164 165
    "imask": "^6.6.1",
    "jsvectormap": "^1.5.3",
166
    "list.js": "^2.3.1",
167
    "litepicker": "^2.0.12",
P
Paweł Kuna 已提交
168
    "nouislider": "^15.7.0",
169 170 171
    "plyr": "^3.7.8",
    "postcss": "^8.4.23",
    "release-it": "^15.10.3",
P
Paweł Kuna 已提交
172
    "request": "^2.88.2",
173
    "rollup": "2.79.1",
C
codecalm 已提交
174
    "rollup-plugin-babel": "^4.4.0",
C
codecalm 已提交
175
    "rollup-plugin-cleanup": "^3.2.1",
176 177
    "sass": "^1.62.1",
    "tinymce": "^6.4.2",
C
codecalm 已提交
178
    "tom-select": "^2.2.2",
C
codecalm 已提交
179 180
    "vinyl-buffer": "^1.0.1",
    "vinyl-source-stream": "^2.0.0",
181 182
    "yaml": "^2.2.2",
    "yargs": "^17.7.2"
C
chomik 已提交
183 184
  },
  "dependencies": {
185
    "@changesets/cli": "^2.26.1",
186 187
    "@popperjs/core": "^2.11.7",
    "bootstrap": "5.3.0-alpha3"
188 189
  },
  "peerDependencies": {
190
    "apexcharts": "^3.40.0",
P
Paweł Kuna 已提交
191
    "autosize": "^6.0.1",
P
Paweł Kuna 已提交
192
    "choices.js": "^10.2.0",
193
    "countup.js": "^2.6.2",
194
    "dropzone": "^6.0.0-beta.2",
P
Paweł Kuna 已提交
195
    "flatpickr": "^4.6.13",
P
Paweł Kuna 已提交
196
    "fslightbox": "^3.4.1",
197 198
    "imask": "^6.6.1",
    "jsvectormap": "^1.5.3",
P
Paweł Kuna 已提交
199
    "list.js": "^2.3.1",
200
    "litepicker": "^2.0.12",
P
Paweł Kuna 已提交
201
    "nouislider": "^15.7.0",
202 203
    "plyr": "^3.7.8",
    "tinymce": "^6.4.2",
C
codecalm 已提交
204
    "tom-select": "^2.2.2"
205
  },
206 207 208 209 210 211 212 213 214 215 216 217 218
  "peerDependenciesMeta": {
    "apexcharts": {
      "optional": true
    },
    "autosize": {
      "optional": true
    },
    "choices.js": {
      "optional": true
    },
    "countup.js": {
      "optional": true
    },
P
Paweł Kuna 已提交
219 220 221
    "dropzone": {
      "optional": true
    },
222 223 224
    "flatpickr": {
      "optional": true
    },
P
Paweł Kuna 已提交
225 226 227
    "fslightbox": {
      "optional": true
    },
228 229 230
    "imask": {
      "optional": true
    },
C
codecalm 已提交
231 232 233
    "jsvectormap": {
      "optional": true
    },
C
codecalm 已提交
234 235 236
    "list.js": {
      "optional": true
    },
237 238 239 240 241 242
    "litepicker": {
      "optional": true
    },
    "nouislider": {
      "optional": true
    },
C
codecalm 已提交
243
    "plyr": {
244
      "optional": true
P
Paweł Kuna 已提交
245
    },
P
Paweł Kuna 已提交
246 247 248
    "tinymce": {
      "optional": true
    },
C
codecalm 已提交
249
    "tom-select": {
P
Paweł Kuna 已提交
250
      "optional": true
251 252
    }
  },
C
codecalm 已提交
253 254
  "release-it": {
    "hooks": {
255
      "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} && gulp build-demo",
C
codecalm 已提交
256 257 258 259 260 261 262 263 264 265
      "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
    },
    "git": {
      "requireCleanWorkingDir": false,
      "addUntrackedFiles": true,
      "tagName": "v${version}"
    },
    "github": {
      "release": true
    }
C
codecalm 已提交
266 267 268
  },
  "directories": {
    "doc": "docs"
C
codecalm 已提交
269
  }
C
codecalm 已提交
270
}