You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
734 B
29 lines
734 B
{
|
|
"name": "@timesafari/polling-contracts",
|
|
"version": "1.0.0",
|
|
"description": "TypeScript contracts and Zod schemas for TimeSafari polling system",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"test:snapshots": "jest --updateSnapshot",
|
|
"lint": "eslint src --ext .ts",
|
|
"lint-fix": "eslint src --ext .ts --fix"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
|
"@typescript-eslint/parser": "^5.57.0",
|
|
"eslint": "^8.37.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
]
|
|
}
|
|
|