package.json42 lines · main
| 1 | { |
| 2 | "name": "@briven/vue", |
| 3 | "version": "0.0.1", |
| 4 | "description": "Vue composables for briven", |
| 5 | "license": "MIT", |
| 6 | "type": "module", |
| 7 | "exports": { |
| 8 | ".": { |
| 9 | "types": "./src/index.ts", |
| 10 | "default": "./src/index.ts" |
| 11 | } |
| 12 | }, |
| 13 | "files": [ |
| 14 | "dist", |
| 15 | "src" |
| 16 | ], |
| 17 | "scripts": { |
| 18 | "build": "tsc -p tsconfig.json", |
| 19 | "lint": "eslint . --max-warnings 0", |
| 20 | "typecheck": "tsc --noEmit" |
| 21 | }, |
| 22 | "dependencies": { |
| 23 | "@briven/client": "workspace:*", |
| 24 | "@briven/config": "workspace:*", |
| 25 | "@briven/shared": "workspace:*" |
| 26 | }, |
| 27 | "peerDependencies": { |
| 28 | "vue": "^3.5.0" |
| 29 | }, |
| 30 | "devDependencies": { |
| 31 | "typescript": "^6.0.3" |
| 32 | }, |
| 33 | "publishConfig": { |
| 34 | "access": "public" |
| 35 | }, |
| 36 | "repository": { |
| 37 | "type": "git", |
| 38 | "url": "git+https://code.konnos.org/flndrn/briven.git", |
| 39 | "directory": "packages/client-vue" |
| 40 | }, |
| 41 | "homepage": "https://docs.briven.tech" |
| 42 | } |