2020-02-27 16:44:56 +01:00
{
2023-01-22 00:02:47 +01:00
"name" : "tabler-icons" ,
2024-02-02 00:13:13 +01:00
"version" : "2.47.0" ,
2020-02-27 16:44:56 +01:00
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/tabler/tabler-icons.git"
} ,
2023-01-22 00:02:47 +01:00
"private" : true ,
2020-11-11 14:03:12 +01:00
"sideEffects" : false ,
2020-11-11 14:19:12 +01:00
"publishConfig" : {
2020-11-13 22:11:22 +01:00
"access" : "public"
2020-11-11 14:19:12 +01:00
} ,
2020-03-01 16:06:35 +01:00
"scripts" : {
8 new icons: `border-corners`, `border-sides`, `brand-cake`, `brand-fiverr`, `currency-nano`, `info-hexagon`, `info-octagon`, `pdf`
Fixed icons: `ad-circle-off`, `ad-circle`, `align-box-center-middle`, `brand-qq`, `brand-taobao`, `csv`, `device-imac`, `device-remote`, `gif`, `jpg`, `plus-equal`, `plus-minus`, `png`, `svg`, `txt`, `zip`
2023-02-26 23:03:30 +01:00
"start" : "bundle exec jekyll serve --watch --livereload --trace --livereload_port 8888 --profile" ,
2023-01-22 00:02:47 +01:00
"build" : "pnpm run optimize && pnpm run update && pnpm run build:svgs && pnpm run build:icons && pnpm run build:packages && pnpm run preview && pnpm run changelog-image && pnpm run zip && pnpm run update-readme" ,
"clean" : "turbo run clean" ,
"test" : "turbo run test" ,
"changelog" : "node ./.build/changelog.mjs" ,
8 new icons: `alert-circle-filled`, `alert-octagon-filled`, `alert-triangle-filled`, `circle-check-filled`, `circle-dot-filled`, `circle-key-filled`, `flag-2-filled`, `flag-3-filled`
Fixed icons: `circles-filled`, `flag-filled`, `oval-filled`, `oval-vertical-filled`
2023-02-09 23:13:46 +01:00
"changelog-commit" : "git add . && node ./.build/changelog-commit.mjs" ,
2023-01-22 00:02:47 +01:00
"changelog-image" : "node ./.build/changelog-image.mjs" ,
2023-01-25 23:17:35 +01:00
"check-unicodes" : "node ./.build/check-icons-unicodes.mjs" ,
"update" : "pnpm run update:icons-version && pnpm run update:icons-unicode && pnpm run check-unicodes" ,
2023-01-22 00:02:47 +01:00
"update:icons-version" : "node ./.build/update-icons-version.mjs" ,
"update:icons-unicode" : "node ./.build/update-icons-unicode.mjs" ,
"optimize" : "node ./.build/optimize.mjs" ,
"import" : "node ./.build/import.mjs && pnpm run optimize" ,
"import-tags" : "node ./.build/import-tags.mjs" ,
"import-categories" : "node ./.build/import-categories.mjs" ,
"preview" : "pnpm run preview-icons && pnpm run preview-stroke" ,
"preview-icons" : "node ./.build/preview-icons.mjs" ,
"preview-stroke" : "node ./.build/preview-stroke.mjs" ,
"release" : "git pull && release-it --verbose" ,
"build:svgs" : "pnpm run build:jekyll && pnpm run build:copy" ,
8 new icons: `border-corners`, `border-sides`, `brand-cake`, `brand-fiverr`, `currency-nano`, `info-hexagon`, `info-octagon`, `pdf`
Fixed icons: `ad-circle-off`, `ad-circle`, `align-box-center-middle`, `brand-qq`, `brand-taobao`, `csv`, `device-imac`, `device-remote`, `gif`, `jpg`, `plus-equal`, `plus-minus`, `png`, `svg`, `txt`, `zip`
2023-02-26 23:03:30 +01:00
"build:jekyll" : "bundle exec jekyll build --config _config.yml,_config-build.yml" ,
2023-01-22 00:02:47 +01:00
"build:copy" : "rm -rf ./icons && mkdir ./icons && cp ./_site/tags.json tags.json && cp ./_site/icons/* ./icons/ && rm -rf ./_site/" ,
"build:icons" : "pnpm --filter @tabler/icons build" ,
"build:packages" : "pnpm run build:react && pnpm run build:preact && pnpm run build:solidjs && pnpm run build:svelte && pnpm run build:vue && pnpm run build:png && pnpm run build:pdf && pnpm run build:esp && pnpm run build:webfont" ,
"build:react" : "pnpm --filter @tabler/icons-react build" ,
"build:preact" : "pnpm --filter @tabler/icons-preact build" ,
"build:solidjs" : "pnpm --filter @tabler/icons-solidjs build" ,
"build:svelte" : "pnpm --filter @tabler/icons-svelte build" ,
"build:vue" : "pnpm --filter @tabler/icons-vue build" ,
"build:png" : "pnpm --filter @tabler/icons-png build" ,
"build:pdf" : "pnpm --filter @tabler/icons-pdf build" ,
"build:esp" : "pnpm --filter @tabler/icons-esp build" ,
"build:webfont" : "pnpm --filter @tabler/icons-webfont build" ,
"update-readme" : "node ./.build/update-readme.mjs" ,
2023-01-24 01:56:09 +01:00
"zip" : "node ./.build/zip-files.mjs"
2020-03-01 16:06:35 +01:00
} ,
"devDependencies" : {
2023-02-09 21:45:10 +01:00
"@atomico/rollup-plugin-sizes" : "^1.1.4" ,
2023-01-22 00:02:47 +01:00
"@babel/cli" : "^7.20.7" ,
2020-10-06 19:28:20 +02:00
"@babel/core" : "7.11.6" ,
"@babel/parser" : "7.11.5" ,
2023-01-22 00:02:47 +01:00
"@babel/plugin-transform-runtime" : "^7.19.6" ,
2020-10-06 19:28:20 +02:00
"@babel/preset-env" : "7.11.5" ,
"@babel/preset-react" : "7.10.4" ,
2023-01-22 00:02:47 +01:00
"@release-it-plugins/workspaces" : "^3.2.0" ,
2020-10-06 19:28:20 +02:00
"@rollup/plugin-babel" : "5.2.1" ,
"@rollup/plugin-commonjs" : "15.1.0" ,
"@rollup/plugin-node-resolve" : "9.0.0" ,
2020-09-21 21:03:00 +02:00
"@svgr/babel-plugin-replace-jsx-attribute-value" : "5.0.1" ,
2020-10-06 19:28:20 +02:00
"@svgr/core" : "5.4.0" ,
2023-01-22 00:02:47 +01:00
"@vue/babel-plugin-jsx" : "^1.1.1" ,
"adm-zip" : "^0.5.10" ,
"cheerio" : "^1.0.0-rc.12" ,
2020-12-05 17:28:41 +01:00
"csv-parser" : "^3.0.0" ,
2023-02-03 13:31:12 +01:00
"esbuild" : "^0.17.5" ,
2023-01-22 00:02:47 +01:00
"fs-extra" : "^10.1.0" ,
2020-03-06 00:48:09 +01:00
"glob" : "7.1.6" ,
2023-01-22 00:02:47 +01:00
"html-minifier" : "^4.0.0" ,
2020-09-07 12:29:44 +02:00
"lodash.template" : "4.5.0" ,
2022-07-10 12:41:52 +02:00
"minimist" : "1.2.6" ,
22 new icons: `baby-bottle`, `binary-tree-2`, `binary-tree-3`, `binary-tree-4`, `binary-tree`, `brand-gumroad`, `brand-onedrive`, `brand-waze`, `topology-bus`, `topology-complex`, `topology-full-hierarchy`, `topology-full`, `topology-ring-2`, `topology-ring-3`, `topology-ring`, `topology-star-2`, `topology-star-3`, `topology-star-ring-2`, `topology-star-ring-3`, `topology-star-ring`, `topology-star`, `vacuum-cleaner`
2022-11-17 17:27:09 +01:00
"node-sass" : "8.0.0" ,
2020-12-05 17:28:41 +01:00
"parse-svg-path" : "^0.1.2" ,
2023-01-22 00:02:47 +01:00
"prettier" : "^2.8.1" ,
2023-03-31 22:39:07 +02:00
"release-it" : "15.9.3" ,
2022-08-25 18:15:02 +02:00
"rollup" : "2.78.1" ,
2023-02-03 13:31:12 +01:00
"rollup-plugin-esbuild" : "^4.10.2" ,
2022-03-16 12:05:08 +01:00
"rollup-plugin-filesize" : "9.1.2" ,
2023-02-03 13:31:12 +01:00
"rollup-plugin-license" : "^3.0.1" ,
2022-03-16 12:05:08 +01:00
"rollup-plugin-peer-deps-external" : "2.2.4" ,
2023-01-22 00:02:47 +01:00
"rollup-plugin-rename" : "^1.0.1" ,
2020-10-06 19:28:20 +02:00
"rollup-plugin-terser" : "7.0.2" ,
2023-01-22 00:02:47 +01:00
"rollup-plugin-visualizer" : "^5.8.3" ,
2022-08-24 22:34:53 +02:00
"svg-outline-stroke" : "1.3.1" ,
2023-01-22 00:02:47 +01:00
"svgo" : "^2.8.0" ,
"svgpath" : "^2.6.0" ,
"svgson" : "^5.2.1"
2020-03-21 23:05:55 +01:00
} ,
"release-it" : {
2023-01-22 00:02:47 +01:00
"plugins" : {
"@release-it-plugins/workspaces" : true
} ,
"npm" : false ,
2020-03-22 13:01:56 +01:00
"hooks" : {
2023-01-22 00:02:47 +01:00
"after:bump" : "pnpm run build --latest-version ${latestVersion} --new-version ${version} --verbose" ,
2023-01-26 02:06:40 +01:00
"after:release" : "echo Successfully released ${name} v${version} to ${repo.repository}." ,
"before:git:init" : "pnpm install"
2020-03-22 13:01:56 +01:00
} ,
2020-03-21 23:22:41 +01:00
"git" : {
2020-03-25 02:01:48 +01:00
"addUntrackedFiles" : true ,
2023-03-11 13:30:25 +01:00
"changelog" : "pnpm run --silent changelog --latest-version ${latestTag}" ,
2020-03-22 13:01:56 +01:00
"tagName" : "v${version}" ,
2023-01-22 00:02:47 +01:00
"_requireBranch" : "master" ,
"requireCommits" : true ,
"requireCleanWorkingDir" : false
2020-03-21 23:22:41 +01:00
} ,
2020-03-21 23:05:55 +01:00
"github" : {
"release" : true
}
2020-10-06 19:28:20 +02:00
} ,
2023-01-22 00:02:47 +01:00
"packageManager" : "pnpm@7.17.0"
2020-02-27 16:44:56 +01:00
}