12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "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"
- }
- }
- }
|