1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "@tabler/icons-preact",
- "version": "3.0.0-beta",
- "license": "MIT",
- "author": "codecalm",
- "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
- "homepage": "https://tabler-icons.io",
- "bugs": {
- "url": "https://github.com/tabler/tabler-icons/issues"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/codecalm"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/tabler/tabler-icons.git",
- "directory": "packages/icons-preact"
- },
- "amdName": "tabler-icons-preact",
- "main": "dist/cjs/tabler-icons-preact.js",
- "main:umd": "dist/umd/tabler-icons-preact.js",
- "module": "dist/esm/tabler-icons-preact.js",
- "unpkg": "dist/umd/tabler-icons-preact.min.js",
- "typings": "dist/tabler-icons-preact.d.ts",
- "files": [
- "dist"
- ],
- "sideEffects": false,
- "scripts": {
- "build": "pnpm run clean && pnpm run copy:license && pnpm run build:icons && pnpm typecheck && pnpm run build:bundles",
- "build:icons": "node build.mjs",
- "build:bundles": "rollup -c ./rollup.config.mjs",
- "copy:license": "cp ../../LICENSE ./LICENSE",
- "clean": "rm -rf dist && find . ! -name '.gitkeep' -path '*/src/icons/*' -exec rm -rf {} +",
- "test": "vitest run",
- "typecheck": "tsc"
- },
- "dependencies": {
- "@tabler/icons": "3.0.0-beta"
- },
- "peerDependencies": {
- "preact": "^10.5.13"
- },
- "devDependencies": {
- "@babel/preset-env": "7.11.5",
- "@preact/preset-vite": "^2.8.1",
- "@testing-library/preact": "^3.2.3",
- "babel-jest": "^29.4.1",
- "babel-preset-preact": "^2.0.0",
- "preact": "^10.5.13"
- }
- }
|