tabler-icons/packages/icons/package.json

62 lines
1.4 KiB
JSON

{
"name": "@tabler/icons",
"version": "2.4.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/index.js",
"main:es": "dist/es/index.js",
"main:umd": "dist/umd/index.js",
"main:umd:min": "dist/umd/index.min.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/index.min.js",
"sideEffects": false,
"files": [
"dist/*",
"tags.json",
"src/tabler-nodes.json",
"src/tabler-contents.json",
"svg/*",
"src/tabler-sprite.svg",
"src/tabler-sprite-nostroke.svg"
],
"types": "dist/index.d.ts",
"homepage": "https://tabler-icons.io",
"bugs": {
"url": "https://github.com/tabler/tabler-icons/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/codecalm"
},
"scripts": {
"clean": "rm -rf dist",
"build": "pnpm run clean && node build.mjs && rollup -c ./rollup.config.mjs",
"test": "jest --env=jsdom"
},
"keywords": [
"icons",
"svg",
"png",
"iconfont",
"react",
"front-end",
"web"
],
"jest": {
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
},
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}