The source headers, LICENSE files, and license metadata had drifted apart. Align the entire project to MIT: - Convert every source-file header to the MIT text across all comment styles (Go, TS, TSX, JS, MJS, SQL, CSS, GraphQL, shell), including SPDX-License-Identifier tags - Set the root and cookie-banner LICENSE files to the MIT text with a "MIT License" title line - Switch the package.json license fields, Docker image label, and cookie-banner README to MIT - Update docs and the genmodels header generator accordingly - Normalize copyright lines to a single format (Copyright (c) <year(s)> Probo Inc <hello@probo.com>.): unify the hello@getprobo.com and hello@probo.inc emails to hello@probo.com and the comma-separated years to a hyphenated range Genuine third-party references are intentionally left untouched: the Lucide icon attributions (Lucide is ISC) and the trivy dependency license allowlist. Signed-off-by: Sacha Al Himdani <sacha@probo.com>
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "@probo/eslint-config",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Shared ESLint configuration for Probo monorepo",
|
|
"main": "./src/index.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"default": "./src/index.ts"
|
|
}
|
|
},
|
|
"imports": {
|
|
"#baseConfigs": "./src/baseConfigs.ts",
|
|
"#tsConfigs": "./src/tsConfigs.ts",
|
|
"#reactConfigs": "./src/reactConfigs.ts",
|
|
"#relayConfigs": "./src/relayConfigs.ts",
|
|
"#importsConfigs": "./src/importsConfigs.ts",
|
|
"#languageOptionsConfigs": "./src/languageOptionsConfigs.ts",
|
|
"#stylisticConfigs": "./src/stylisticConfigs.ts"
|
|
},
|
|
"scripts": {},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@probo/eslint-plugin-relay-types": "^1.0.0",
|
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
"eslint-import-resolver-typescript": "^4.4.5",
|
|
"eslint-plugin-import-x": "^4.16.2",
|
|
"eslint-plugin-react-hooks": "^7.1.1",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-relay": "^2.0.0",
|
|
"eslint": "^10.6.0",
|
|
"globals": "^17.6.0",
|
|
"jiti": "^2.2.0",
|
|
"typescript-eslint": "^8.62.1",
|
|
"typescript": "~6.0.3"
|
|
}
|
|
}
|