UNPKG

@tanstack/svelte-store

Version:

Framework agnostic type-safe store w/ reactive framework adapters

62 lines 1.58 kB
{ "name": "@tanstack/svelte-store", "version": "0.7.3", "description": "Framework agnostic type-safe store w/ reactive framework adapters", "author": "Tanner Linsley", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/TanStack/store.git", "directory": "packages/svelte-store" }, "homepage": "https://tanstack.com/store", "funding": { "type": "github", "url": "https://github.com/sponsors/tannerlinsley" }, "keywords": [ "store", "typescript", "svelte" ], "type": "module", "types": "dist/index.d.ts", "module": "dist/index.js", "svelte": "./dist/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "svelte": "./dist/index.js", "import": "./dist/index.js" }, "./package.json": "./package.json" }, "sideEffects": false, "files": [ "dist", "src" ], "dependencies": { "@tanstack/store": "0.7.2" }, "devDependencies": { "@sveltejs/package": "^2.3.12", "@sveltejs/vite-plugin-svelte": "^5.1.0", "@testing-library/svelte": "^5.2.8", "eslint-plugin-svelte": "^2.46.1", "svelte": "^5.34.9", "svelte-check": "^4.2.2" }, "peerDependencies": { "svelte": "^5.0.0" }, "scripts": { "clean": "premove ./dist ./coverage", "test:types": "svelte-check --tsconfig ./tsconfig.json", "test:eslint": "eslint ./src ./tests", "test:lib": "vitest", "test:lib:dev": "pnpm run test:lib --watch", "test:build": "publint --strict", "build": "svelte-package --input ./src --output ./dist" } }