mirror of
https://github.com/tabler/tabler-icons.git
synced 2025-01-18 05:08:29 +01:00
77 lines
2.0 KiB
JSON
77 lines
2.0 KiB
JSON
{
|
|
"name": "@tabler/icons",
|
|
"version": "2.15.0",
|
|
"license": "MIT",
|
|
"author": "codecalm",
|
|
"description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tabler/tabler-icons.git"
|
|
},
|
|
"main": "dist/cjs/tabler-icons.js",
|
|
"main:umd": "dist/umd/tabler-icons.js",
|
|
"exports": {
|
|
"./*": [
|
|
"./icons/*"
|
|
]
|
|
},
|
|
"module": "dist/esm/tabler-icons.js",
|
|
"unpkg": "dist/umd/tabler-icons.min.js",
|
|
"typings": "dist/tabler-icons.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist/*",
|
|
"tags.json",
|
|
"tabler-nodes.json",
|
|
"icons/*",
|
|
"categories/*",
|
|
"tabler-sprite.svg",
|
|
"tabler-sprite-nostroke.svg"
|
|
],
|
|
"homepage": "https://tabler-icons.io",
|
|
"bugs": {
|
|
"url": "https://github.com/tabler/tabler-icons/issues"
|
|
},
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/codecalm"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm run clean && pnpm run copy && pnpm run build:icons && pnpm run build:es && pnpm run build:bundles",
|
|
"build:icons": "node build.mjs",
|
|
"build:es": "babel src -d dist/esm",
|
|
"build:bundles": "rollup -c ./rollup.config.mjs",
|
|
"copy": "pnpm run copy:license && pnpm run copy:icons && pnpm run copy:tags",
|
|
"copy:icons": "mkdir -p ./icons && cp ../../icons/*.svg ./icons/",
|
|
"copy:tags": "cp ../../tags.json tags.json",
|
|
"copy:license": "cp ../../LICENSE ./LICENSE",
|
|
"clean": "rm -rf dist && rm -rf src/icons/*.js && rm -rf icons",
|
|
"test": "jest --env=jsdom"
|
|
},
|
|
"keywords": [
|
|
"icons",
|
|
"svg",
|
|
"png",
|
|
"iconfont",
|
|
"react",
|
|
"front-end",
|
|
"web"
|
|
],
|
|
"devDependencies": {
|
|
"babel-jest": "^29.4.1",
|
|
"jest": "^29.4.1",
|
|
"jest-environment-jsdom": "^29.4.1"
|
|
},
|
|
"jest": {
|
|
"testEnvironmentOptions": {
|
|
"customExportConditions": [
|
|
"node",
|
|
"node-addons"
|
|
]
|
|
},
|
|
"transform": {
|
|
"^.+\\.js$": "babel-jest"
|
|
}
|
|
}
|
|
}
|