routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
{
"name": "eslint-plugin-perfectionist",
"version": "5.9.0",
"description": "ESLint plugin for sorting various data such as objects, imports, types, enums, JSX props, etc.",
"keywords": [
"eslint",
"eslint-plugin",
"perfectionist"
],
"homepage": "https://perfectionist.dev",
"repository": "azat-io/eslint-plugin-perfectionist",
"license": "MIT",
"author": "Azat S. <to@azat.io>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./alphabet": {
"types": "./dist/alphabet.d.ts",
"default": "./dist/utils/alphabet.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"dependencies": {
"@typescript-eslint/utils": "^8.58.2",
"natural-orderby": "^5.0.0"
},
"peerDependencies": {
"eslint": "^8.45.0 || ^9.0.0 || ^10.0.0"
},
"engines": {
"node": "^20.0.0 || >=22.0.0"
}
}