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.
28 lines
755 B
JSON
28 lines
755 B
JSON
{
|
|
"name": "@workspace/tooling",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./eslint/base": "./eslint/base.mjs",
|
|
"./eslint/nestjs": "./eslint/nestjs.mjs",
|
|
"./prettier": "./prettier/index.mjs",
|
|
"./tsconfig/base.json": "./tsconfig/base.json",
|
|
"./tsconfig/nestjs.json": "./tsconfig/nestjs.json",
|
|
"./tsconfig/library.json": "./tsconfig/library.json"
|
|
},
|
|
"dependencies": {
|
|
"@eslint/js": "^9.18.0",
|
|
"eslint-config-prettier": "^10.0.1",
|
|
"eslint-plugin-prettier": "^5.2.2",
|
|
"@stylistic/eslint-plugin": "^5.0.0",
|
|
"globals": "^16.0.0",
|
|
"typescript-eslint": "^8.20.0"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": "^9.0.0",
|
|
"prettier": "^3.0.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|