28 lines
572 B
JSON
28 lines
572 B
JSON
{
|
|
"name": "@readabook/shared",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"dev": "tsc -w -p tsconfig.json",
|
|
"lint": "tsc -p tsconfig.json --noEmit",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"vitest": "^3.0.5"
|
|
}
|
|
}
|