UNPKG

vanjs-feather

Version:
90 lines • 2.46 kB
{ "name": "vanjs-feather", "version": "0.1.3", "description": "🫦 Feather icons for VanJS", "files": [ "dist/index.js", "dist/index.js.map", "dist/index.cjs", "dist/index.cjs.map", "dist/index.mjs", "dist/index.mjs.map", "dist/index.d.ts" ], "main": "dist/index.mjs", "browser": "dist/index.js", "types": "dist/index.d.ts", "typings": "dist/index.d.ts", "sideEffects": false, "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.cjs", "import": "./dist/index.mjs" } }, "keywords": [ "vanjs", "vanjs-component", "feather", "feather-icons" ], "type": "module", "license": "MIT", "homepage": "https://thednp.github.io/vanjs-feather", "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.10", "@tailwindcss/typography": "^0.5.16", "@types/node": "^22.15.24", "@vitest/browser": "^3.1.4", "@vitest/coverage-istanbul": "^3.1.4", "autoprefixer": "^10.4.21", "express": "^5.1.0", "happy-dom": "^17.5.6", "postcss": "^8.5.4", "postcss-import": "^16.1.0", "postcss-nesting": "^13.0.1", "tailwindcss": "^4.1.8", "tsup": "^8.5.0", "typescript": "^5.8.3", "vite": "^6.3.5", "vitest": "^3.1.4" }, "peerDependencies": { "vanjs-core": "^1.5.3" }, "dependencies": { "vanjs-core": "^1.5.5", "vite-plugin-vanjs": "^0.1.9" }, "packageManager": "pnpm@8.6.12", "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": "tsup && pnpm build:iife", "build:iife": "vite build --config vite.config.ts", "build: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" } }