MeshiTrack/packages/shared/package.json

37 lines
846 B
JSON

{
"name": "@meshitrack/shared",
"version": "0.0.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./validation": {
"types": "./dist/validation/index.d.ts",
"import": "./dist/validation/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"test": "vitest run",
"test:cov": "vitest run --coverage"
},
"dependencies": {
"zod": "^4.3.0"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.1.1",
"rimraf": "^6.0.0",
"typescript": "^6.0.0",
"vitest": "^4.1.1"
}
}