- Updated application version from 2.21.18 to 2.21.19 in package.json. - Improved invitation validation by handling cases where the invitation is not found and ensuring email comparison is case insensitive.
27 lines
587 B
JSON
27 lines
587 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": {
|
|
"@next/eslint-plugin-next": "catalog:",
|
|
"@types/eslint": "9.6.1",
|
|
"eslint-config-next": "catalog:",
|
|
"eslint-config-turbo": "^2.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/prettier-config": "workspace:*",
|
|
"eslint": "^9.39.2"
|
|
},
|
|
"prettier": "@kit/prettier-config"
|
|
}
|