package.json 6.3 KB
Newer Older
C
codecalm 已提交
1
{
M
Michal Wolny 已提交
2
  "name": "@tabler/core",
C
codecalm 已提交
3
  "version": "1.0.0-beta16",
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
    "preview": "gulp build --preview",
C
codecalm 已提交
11
    "svg-optimize": "svgo -f svg/brand --pretty",
C
codecalm 已提交
12
    "unused-files": "node build/unused-files.js",
C
codecalm 已提交
13
    "release": "release-it",
C
codecalm 已提交
14
    "svg-icons": "gulp svg-icons",
C
codecalm 已提交
15
    "percy": "gulp build && npx percy snapshot demo",
16
    "bundlewatch": "bundlewatch",
P
Paweł Kuna 已提交
17 18
    "chromatic": "chromatic --project-token=CHROMATIC_PROJECT_TOKEN",
    "storybook": "start-storybook -p 6006",
19
    "changelog": "gulp changelog",
P
Paweł Kuna 已提交
20 21 22
    "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 已提交
23 24 25
  },
  "repository": {
    "type": "git",
C
codecalm 已提交
26
    "url": "git+https://github.com/tabler/tabler.git"
C
codecalm 已提交
27
  },
28 29 30 31 32 33 34 35 36
  "keywords": [
    "css",
    "sass",
    "mobile-first",
    "responsive",
    "front-end",
    "framework",
    "web"
  ],
C
codecalm 已提交
37
  "author": "codecalm",
C
codecalm 已提交
38
  "license": "MIT",
C
codecalm 已提交
39
  "bugs": {
C
codecalm 已提交
40
    "url": "https://github.com/tabler/tabler/issues"
C
codecalm 已提交
41
  },
C
codecalm 已提交
42 43 44 45
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/codecalm"
  },
C
chomik 已提交
46
  "engines": {
47
    "node": ">=16"
C
chomik 已提交
48 49
  },
  "files": [
C
codecalm 已提交
50 51 52 53
    "dist/**/*",
    "src/js/**/*.{js,map}",
    "src/img/**/*.{svg}",
    "src/scss/**/*.scss"
C
chomik 已提交
54
  ],
C
codecalm 已提交
55
  "style": "dist/css/tabler.css",
C
codecalm 已提交
56
  "sass": "src/scss/tabler.scss",
57 58 59
  "unpkg": "dist/js/tabler.min.js",
  "umd:main": "dist/js/tabler.min.js",
  "module": "dist/js/tabler.esm.js",
60
  "main": "dist/js/tabler.js",
C
codecalm 已提交
61 62 63 64
  "bundlewatch": {
    "files": [
      {
        "path": "./dist/css/tabler.css",
65
        "maxSize": "67 kB"
C
codecalm 已提交
66 67 68
      },
      {
        "path": "./dist/css/tabler.min.css",
69
        "maxSize": "62 kB"
C
codecalm 已提交
70 71 72
      },
      {
        "path": "./dist/css/tabler.rtl.css",
73
        "maxSize": "67 kB"
C
codecalm 已提交
74 75 76
      },
      {
        "path": "./dist/css/tabler.rtl.min.css",
77
        "maxSize": "62 kB"
C
codecalm 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
      },
      {
        "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"
      },
95 96 97 98 99 100 101 102
      {
        "path": "./dist/css/tabler-vendors.css",
        "maxSize": "7 kB"
      },
      {
        "path": "./dist/css/tabler-vendors.min.css",
        "maxSize": "6 kB"
      },
C
codecalm 已提交
103 104
      {
        "path": "./dist/js/tabler.js",
105
        "maxSize": "60 kB"
C
codecalm 已提交
106 107 108
      },
      {
        "path": "./dist/js/tabler.min.js",
109 110 111 112 113 114 115 116 117
        "maxSize": "45 kB"
      },
      {
        "path": "./dist/js/tabler.esm.js",
        "maxSize": "60 kB"
      },
      {
        "path": "./dist/js/tabler.esm.min.js",
        "maxSize": "45 kB"
C
codecalm 已提交
118 119 120
      }
    ]
  },
C
codecalm 已提交
121
  "devDependencies": {
122
    "@babel/core": "^7.20.12",
P
Paweł Kuna 已提交
123
    "@babel/preset-env": "^7.20.2",
124
    "@rollup/plugin-commonjs": "^24.0.0",
P
Paweł Kuna 已提交
125
    "@rollup/plugin-node-resolve": "^15.0.1",
126
    "@rollup/plugin-replace": "^5.0.2",
P
Paweł Kuna 已提交
127
    "@rollup/pluginutils": "^5.0.2",
C
codecalm 已提交
128
    "@rollup/stream": "^2.0.0",
C
codecalm 已提交
129
    "@tabler/icons": "^2.1.2",
P
Paweł Kuna 已提交
130 131
    "apexcharts": "^3.36.3",
    "autoprefixer": "^10.4.13",
P
Paweł Kuna 已提交
132
    "autosize": "^5.0.2",
133
    "browser-sync": "^2.27.11",
P
Paweł Kuna 已提交
134
    "bundlewatch": "^0.3.3",
P
Paweł Kuna 已提交
135
    "choices.js": "^10.2.0",
136
    "chromatic": "^6.14.0",
137
    "countup.js": "^2.3.2",
C
codecalm 已提交
138
    "cross-spawn": "^7.0.3",
P
Paweł Kuna 已提交
139
    "dropzone": "^6.0.0-beta.2",
P
Paweł Kuna 已提交
140
    "flatpickr": "^4.6.13",
P
Paweł Kuna 已提交
141
    "fslightbox": "^3.3.1",
C
codecalm 已提交
142
    "gulp": "^4.0.2",
C
codecalm 已提交
143
    "gulp-clean": "^0.4.0",
C
codecalm 已提交
144
    "gulp-clean-css": "^4.3.0",
145
    "gulp-debug": "^4.0.0",
C
codecalm 已提交
146
    "gulp-header": "^2.0.9",
C
codecalm 已提交
147
    "gulp-postcss": "^9.0.1",
148
    "gulp-purgecss": "^5.0.0",
C
codecalm 已提交
149
    "gulp-rename": "^2.0.0",
P
Paweł Kuna 已提交
150
    "gulp-rtlcss": "^2.0.0",
P
Paweł Kuna 已提交
151
    "gulp-sass": "^5.1.0",
152
    "gulp-terser": "^2.1.0",
P
Paweł Kuna 已提交
153
    "imageoptim-cli": "^3.0.7",
154
    "imask": "^6.4.3",
155
    "jsvectormap": "^1.5.1",
156
    "list.js": "^2.3.1",
157
    "litepicker": "^2.0.12",
158
    "nouislider": "^15.6.1",
P
Paweł Kuna 已提交
159
    "plyr": "^3.7.3",
160 161
    "postcss": "^8.4.20",
    "release-it": "^15.6.0",
P
Paweł Kuna 已提交
162
    "request": "^2.88.2",
163
    "rollup": "2.79.1",
C
codecalm 已提交
164
    "rollup-plugin-babel": "^4.4.0",
C
codecalm 已提交
165
    "rollup-plugin-cleanup": "^3.2.1",
166
    "sass": "^1.57.1",
P
Paweł Kuna 已提交
167
    "tinymce": "^6.3.1",
C
codecalm 已提交
168
    "tom-select": "^2.2.2",
C
codecalm 已提交
169 170
    "vinyl-buffer": "^1.0.1",
    "vinyl-source-stream": "^2.0.0",
171
    "yaml": "^2.2.1",
P
Paweł Kuna 已提交
172
    "yargs": "^17.6.2"
C
chomik 已提交
173 174
  },
  "dependencies": {
175
    "@popperjs/core": "^2.11.6",
176
    "bootstrap": "5.3.0-alpha1"
177 178
  },
  "peerDependencies": {
P
Paweł Kuna 已提交
179
    "apexcharts": "^3.36.3",
P
Paweł Kuna 已提交
180
    "autosize": "^5.0.2",
P
Paweł Kuna 已提交
181
    "choices.js": "^10.2.0",
182
    "countup.js": "^2.3.2",
183
    "dropzone": "^6.0.0-beta.2",
P
Paweł Kuna 已提交
184
    "flatpickr": "^4.6.13",
P
Paweł Kuna 已提交
185
    "fslightbox": "^3.3.1",
186
    "imask": "^6.4.3",
187
    "jsvectormap": "^1.5.1",
P
Paweł Kuna 已提交
188
    "list.js": "^2.3.1",
189
    "litepicker": "^2.0.12",
190
    "nouislider": "^15.6.1",
P
Paweł Kuna 已提交
191
    "plyr": "^3.7.3",
P
Paweł Kuna 已提交
192
    "tinymce": "^6.3.1",
C
codecalm 已提交
193
    "tom-select": "^2.2.2"
194
  },
195 196 197 198 199 200 201 202 203 204 205 206 207
  "peerDependenciesMeta": {
    "apexcharts": {
      "optional": true
    },
    "autosize": {
      "optional": true
    },
    "choices.js": {
      "optional": true
    },
    "countup.js": {
      "optional": true
    },
P
Paweł Kuna 已提交
208 209 210
    "dropzone": {
      "optional": true
    },
211 212 213
    "flatpickr": {
      "optional": true
    },
P
Paweł Kuna 已提交
214 215 216
    "fslightbox": {
      "optional": true
    },
217 218 219
    "imask": {
      "optional": true
    },
C
codecalm 已提交
220 221 222
    "jsvectormap": {
      "optional": true
    },
C
codecalm 已提交
223 224 225
    "list.js": {
      "optional": true
    },
226 227 228 229 230 231
    "litepicker": {
      "optional": true
    },
    "nouislider": {
      "optional": true
    },
C
codecalm 已提交
232
    "plyr": {
233
      "optional": true
P
Paweł Kuna 已提交
234
    },
P
Paweł Kuna 已提交
235 236 237
    "tinymce": {
      "optional": true
    },
C
codecalm 已提交
238
    "tom-select": {
P
Paweł Kuna 已提交
239
      "optional": true
240 241
    }
  },
C
codecalm 已提交
242 243
  "release-it": {
    "hooks": {
244
      "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} && gulp build-demo",
C
codecalm 已提交
245 246 247 248 249 250 251 252 253 254
      "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
    },
    "git": {
      "requireCleanWorkingDir": false,
      "addUntrackedFiles": true,
      "tagName": "v${version}"
    },
    "github": {
      "release": true
    }
C
codecalm 已提交
255 256 257
  },
  "directories": {
    "doc": "docs"
C
codecalm 已提交
258
  }
C
codecalm 已提交
259
}