super-productivity/packages/shared-schema/package.json
2026-05-11 15:21:08 +02:00

35 lines
764 B
JSON

{
"name": "@sp/shared-schema",
"version": "1.0.0",
"description": "Shared schema versioning and migrations for Super Productivity sync",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"dependencies": {
"@sp/sync-core": "*",
"zod": "^4.4.3"
},
"scripts": {
"build": "tsup",
"build:tsc": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
}
}