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