| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "name": "@briven/svelte",
- "version": "0.0.1",
- "description": "Svelte stores and helpers for briven",
- "license": "MIT",
- "type": "module",
- "exports": {
- ".": {
- "types": "./src/index.ts",
- "default": "./src/index.ts"
- }
- },
- "files": [
- "dist",
- "src"
- ],
- "scripts": {
- "build": "tsc -p tsconfig.json",
- "lint": "eslint . --max-warnings 0",
- "typecheck": "tsc --noEmit"
- },
- "dependencies": {
- "@briven/client": "workspace:*",
- "@briven/config": "workspace:*",
- "@briven/shared": "workspace:*"
- },
- "peerDependencies": {
- "svelte": "^5.0.0"
- },
- "devDependencies": {
- "typescript": "^6.0.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "repository": {
- "type": "git",
- "url": "git+https://code.konnos.org/flndrn/briven.git",
- "directory": "packages/client-svelte"
- },
- "homepage": "https://docs.briven.tech"
- }
|