| 1234567891011121314151617181920212223242526272829303132 |
- {
- "name": "@briven/schema",
- "version": "0.0.0",
- "private": true,
- "description": "Schema DSL and migration generator for briven projects",
- "type": "module",
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "default": "./src/index.ts"
- }
- },
- "files": [
- "src"
- ],
- "scripts": {
- "build": "tsup",
- "lint": "eslint . --max-warnings 0",
- "typecheck": "tsc --noEmit",
- "test": "tsx --test src/schema.test.ts src/wire.test.ts"
- },
- "dependencies": {
- "@briven/config": "workspace:*",
- "@briven/shared": "workspace:*",
- "zod": "^4.3.6"
- },
- "devDependencies": {
- "@types/node": "^25.6.0",
- "tsup": "^8.5.1",
- "typescript": "^6.0.3"
- }
- }
|