UNPKG

vanjs-feather

Version:
86 lines • 2.33 kB
{ "name": "vanjs-feather", "version": "0.1.7", "description": "🫦 Feather icons for VanJS", "author": "thednp", "license": "MIT", "homepage": "https://thednp.github.io/vanjs-feather", "type": "module", "sideEffects": false, "source": "src/index.ts", "browser": "dist/index.umd.js", "types": "dist/index.d.ts", "typings": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE", "package.json" ], "exports": { ".": "./dist/index.js", "./package.json": "./package.json" }, "keywords": [ "vanjs", "vanjs-component", "feather", "feather-icons" ], "bugs": { "url": "https://github.com/thednp/vanjs-feather/issues" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "git+https://github.com/thednp/vanjs-feather.git" }, "devDependencies": { "@tailwindcss/forms": "^0.5.11", "@tailwindcss/typography": "^0.5.19", "@types/node": "^25.5.0", "@vitest/browser": "^4.1.2", "@vitest/coverage-istanbul": "^4.1.2", "autoprefixer": "^10.4.27", "express": "^5.2.1", "happy-dom": "^20.8.9", "postcss": "^8.5.8", "postcss-import": "^16.1.1", "postcss-nesting": "^14.0.0", "tailwindcss": "^4.2.2", "tsdown": "^0.21.7", "tsup": "^8.5.1", "typescript": "^6.0.2", "vite": "^8.0.3", "vite-plugin-strip-comments": "^0.0.10", "vite-vanjs-svg": "^0.0.14", "vitest": "^4.1.2" }, "peerDependencies": { "vanjs-core": "^1.5.3" }, "dependencies": { "vanjs-core": "^1.6.0", "vite-plugin-vanjs": "^0.1.14" }, "scripts": { "dev": "cd demo && node server --port 3000", "preview": "cd demo && pnpm preview", "test": "vitest --config demo/vitest.config.ts", "format": "deno fmt src demo", "build": "tsdown", "build:docs": "rm -rf docs/* && cd demo && pnpm generate && pnpm copy:docs", "build:all": "pnpm build && pnpm build:docs", "upd": "pnpm run --parallel /^up:/", "up:root": "pnpm up --latest", "up:demo": "cd demo && pnpm up --latest", "lint": "pnpm lint:types && pnpm lint:code", "lint:code": "deno lint src", "lint:types": "tsc --noEmit", "fix:ts": "deno lint src --fix", "serve": "vite serve docs --port 3000" } }