This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ESLegant/packages/config/package.json

61 lines
1.5 KiB
JSON
Raw Normal View History

2023-07-11 14:50:49 -03:00
{
"name": "@eslegant/config",
2023-08-23 14:13:13 +00:00
"version": "0.2.0",
2023-07-11 14:50:49 -03:00
"description": "",
"main": "index.js",
2023-07-11 19:05:50 -03:00
"module": "./src/index.js",
"source": "./src/index.js",
"files": [
"src",
"index.d.ts"
],
2023-08-29 15:39:01 -03:00
"homepage": "https://github.com/LoredDev/ESLegant",
2023-07-11 19:05:50 -03:00
"exports": {
"default": "./src/index.js",
"import": "./src/index.js",
"types": "./src/index.d.ts"
2023-07-11 19:05:50 -03:00
},
"type": "module",
"types": "./src/index.js",
2023-07-11 14:50:49 -03:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
2023-07-11 14:50:49 -03:00
},
"repository": {
"directory": "packages/config",
"type": "git",
2023-08-29 15:39:01 -03:00
"url": "https://github.com/LoredDev/ESLegant"
},
2023-07-20 16:29:33 -03:00
"author": {
"email": "contact.guz013@gmail.com",
"name": "Gustavo \"Guz\" L. de Mello",
"url": "https://guz.one"
},
2023-07-20 16:29:33 -03:00
"license": "MIT",
2023-07-11 14:50:49 -03:00
"devDependencies": {
"@types/eslint__js": "^8.42.0",
2023-08-23 11:45:04 -03:00
"@types/node": "^20.5.3",
"eslint": "^8.47.0",
"typescript": "^5.1.6"
2023-07-11 19:05:50 -03:00
},
"dependencies": {
2023-08-23 11:45:04 -03:00
"@eslint/eslintrc": "^2.1.2",
"@eslint/js": "^8.47.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
2023-08-25 17:31:56 -03:00
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-i": "2.28.0-2",
2023-08-23 11:45:04 -03:00
"eslint-plugin-jsdoc": "^46.5.0",
2023-08-31 13:10:21 -03:00
"eslint-plugin-perfectionist": "^1.5.1",
2023-09-01 17:27:27 -03:00
"eslint-plugin-unicorn": "^48.0.1",
2023-08-23 11:45:04 -03:00
"globals": "^13.21.0"
},
"peerDependencies": {
"eslint": "^8.45.0",
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public"
}
2023-07-11 14:50:49 -03:00
}