sandbox/npm/eslint-config/package.json
Yongmin Hong 959705258e
npm(eslint-config): correct wrong peerDependency
Summary:
eslint-config-prettier should have been peerDependency not devDependency.
Correct them by moving it.

(Also do some yml cleanups.)

Signed-off-by: Yongmin Hong <revi@omglol.email>

Test Plan: `npm ci`.

Reviewers: O1 revi & automations, revi

Reviewed By: O1 revi & automations, revi

Differential Revision: https://issuetracker.revi.xyz/D342
2024-06-17 12:53:55 +09:00

36 lines
875 B
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@revi/eslint-config",
"version": "0.0.3",
"description": "@revi's shared eslint config",
"main": "eslint.config.js",
"peerDependencies": {
"@eslint/js": "^8.0.0 || ^9.0.0",
"eslint": "^8.0.0 || ^9.0.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.4.0"
},
"devDependencies": {
"@revi/prettier-config": "^0.0.2",
"prettier": "^3.3.2"
},
"scripts": {
"test": "prettier --check"
},
"funding": "https://github.com/sponsors/revi",
"keywords": [
"eslint"
],
"repository": {
"type": "git",
"url": "https://github.com/revi/sandbox.git",
"directory": "npm/eslint-config"
},
"author": {
"name": "Yongmin Hong",
"url": "https://revi.xyz/",
"email": "revi@omglol.email"
},
"type": "module",
"license": "Apache-2.0"
}