cyphertap
Version:
Nostr, Lightning and Ecash on a single Button component
134 lines • 4.08 kB
JSON
{
"name": "cyphertap",
"description": "Nostr, Lightning and Ecash on a single Button component",
"version": "0.0.36",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cypherflow/cyphertap.git"
},
"author": "cypherflow",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypherflow/cyphertap/issues"
},
"homepage": "https://github.com/cypherflow/cyphertap#readme",
"peerDependencies": {
"svelte": "^5.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@internationalized/date": "^3.9.0",
"@lucide/svelte": "^0.515.0",
"@playwright/test": "^1.49.1",
"@storybook/addon-a11y": "^9.1.3",
"@storybook/addon-docs": "^9.1.3",
"@storybook/addon-svelte-csf": "^5.0.8",
"@storybook/addon-vitest": "^9.1.3",
"@storybook/sveltekit": "^9.1.3",
"@sveltejs/adapter-auto": "^6.0.0",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0",
"@types/debug": "^4.1.12",
"@types/node": "^22",
"@vitest/browser": "^3.2.3",
"bits-ui": "^2.9.4",
"clsx": "^2.1.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-storybook": "^9.1.3",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"playwright": "^1.53.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"publint": "^0.3.2",
"storybook": "^9.1.3",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^1.0.0",
"tailwindcss": "^4.0.0",
"tw-animate-css": "^1.3.7",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0",
"vaul-svelte": "1.0.0-next.7",
"vite": "^7.0.4",
"vite-plugin-devtools-json": "^1.0.0",
"vitest": "^3.2.3",
"vitest-browser-svelte": "^0.1.0"
},
"keywords": [
"svelte",
"nostr",
"ecash",
"lightning"
],
"dependencies": {
"@cashu/cashu-ts": "^2.6.0",
"@castlenine/svelte-qrcode": "^2.3.0",
"@gandlaf21/bc-ur": "^1.1.12",
"@inlang/paraglide-js": "^2.0.0",
"@lucide/svelte": "^0.515.0",
"@noble/ciphers": "^2.0.0",
"@noble/hashes": "^2.0.0",
"@nostr-dev-kit/ndk": "^2.14.33",
"@nostr-dev-kit/ndk-cache-dexie": "^2.6.11",
"@nostr-dev-kit/ndk-svelte": "^2.4.38",
"@nostr-dev-kit/ndk-wallet": "^0.6.2",
"@scure/base": "^2.0.0",
"@tailwindcss/cli": "^4.1.13",
"bits-ui": "^2.9.4",
"date-fns": "^4.1.0",
"debug": "^4.4.1",
"esm-env": "^1.2.2",
"mode-watcher": "^1.1.0",
"nanoid": "^5.1.5",
"qr-scanner": "^1.4.2",
"svelte-motion": "^0.12.2",
"svelte-sonner": "^1.0.5",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^1.0.0",
"vaul-svelte": "1.0.0-next.7"
},
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run prepack",
"build:css": "pnpx @tailwindcss/cli -i ./src/lib/tailwind.css -o ./dist/styles.css --minify",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
}
}