initial commit
All checks were successful
Publish to npm / publish-npm (release) Successful in 9s

This commit is contained in:
rus07tam 2026-02-08 15:13:43 +00:00
commit b4f68f48c6
No known key found for this signature in database
14 changed files with 872 additions and 0 deletions

73
package.json Normal file
View file

@ -0,0 +1,73 @@
{
"name": "@ruject/eslint-config",
"version": "0.1.0",
"description": "A standard eslint config for RuJect projects",
"keywords": [
"typescript",
"bun",
"eslint",
"eslint-config",
"unicorn",
"perfectionist",
"prettier",
"sonarjs"
],
"homepage": "https://git.ruject.fun/RuJect/eslint-config",
"bugs": {
"url": "https://git.ruject.fun/RuJect/eslint-config/issues",
"email": "feedback@ruject.fun"
},
"license": "Unlicense",
"author": {
"name": "RuJect",
"email": "feedback@ruject.fun",
"url": "https://git.ruject.fun/RuJect"
},
"contributors": [
{
"name": "rus07tam",
"email": "rus07tam@ruject.fun",
"url": "https://git.ruject.fun/rus07tam"
}
],
"repository": "https://git.ruject.fun/RuJect/eslint-config",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"packageManager": "bun@1.3.6",
"files": [
"dist/**/*",
"!dist/**/*.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepack": "bun run clean && bun run build"
},
"dependencies": {
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^5.5.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-sonarjs": "^3.0.6",
"eslint-plugin-unicorn": "^62.0.0",
"jiti": "^2.6.1",
"lodash": "^4.17.23",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/lodash": "^4.17.23",
"@types/node": "^25.2.2"
}
}