26 lines
567 B
JSON
26 lines
567 B
JSON
{
|
|
"name": "@yetanother/types",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "eslint src/",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"clean": "rm -rf .turbo node_modules"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.24.0"
|
|
},
|
|
"devDependencies": {
|
|
"@yetanother/tsconfig": "workspace:*",
|
|
"@yetanother/eslint-config": "workspace:*",
|
|
"typescript": "^5.8.0",
|
|
"eslint": "^9.25.0",
|
|
"vitest": "^3.1.0"
|
|
}
|
|
}
|