* 2.24.1 - Updated dependencies - MCP Server: better compatibility with Windows - MCP Server: allow using a custom root for better flexibility - Version Check: use package.json version instead of number of commits - Prettier: reformatted some files - Add SSH_AUTH_SOCK to dev passThroughEnv to solve SSH issues; handle execSync errors - Use GIT_SSH to fix SSH issues on Windows - Updated Stripe version - Updated application version from 2.24.0 to 2.24.1 in package.json. - Enhanced error handling in billing services to include error causes for better debugging.
28 lines
623 B
JSON
28 lines
623 B
JSON
{
|
|
"name": "@kit/eslint-config",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"files": [
|
|
"./apps.js",
|
|
"./base.js",
|
|
"./nextjs.js"
|
|
],
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{js,json}\""
|
|
},
|
|
"dependencies": {
|
|
"@eslint/js": "catalog:",
|
|
"@next/eslint-plugin-next": "catalog:",
|
|
"@types/eslint": "catalog:",
|
|
"eslint-config-next": "catalog:",
|
|
"eslint-config-turbo": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/prettier-config": "workspace:*",
|
|
"eslint": "catalog:"
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|