All checks were successful
ci / ci (22) (push) Successful in 11m57s
- Added "check-types" script to package.json for type checking in both api and web apps. - Updated ESLint configuration to use a shared tooling package for consistent linting rules. - Refactored TypeScript configurations to extend from shared tooling configurations. - Improved code formatting and consistency in various files, including Vue components and TypeScript files. - Introduced CI workflow for automated linting, formatting checks, and type checking on push and pull request events. - Cleaned up unnecessary dependencies and updated existing ones for better performance and maintainability.
33 lines
708 B
JSON
33 lines
708 B
JSON
{
|
|
"name": "@workspace/schema",
|
|
"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",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf dist",
|
|
"check-types": "tsc --noEmit",
|
|
"lint": "eslint \"src/**/*.ts\" --fix"
|
|
},
|
|
"dependencies": {
|
|
"drizzle-orm": "^0.43.1",
|
|
"drizzle-valibot": "^0.4.2",
|
|
"valibot": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.14.1",
|
|
"@workspace/tooling": "workspace:*",
|
|
"eslint": "^9.0.0",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|