eslint-plugin-import-alias-ts/package.json
autocommit 4d8befa0a3
Some checks failed
Build and Publish / build-and-publish (push) Failing after 51s
deps-upgrade(deps): ⬆️ Update dependencies to latest compatible versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:13:07 -07:00

49 lines
1 KiB
JSON

{
"name": "@lilith/eslint-plugin-import-alias",
"version": "1.2.2",
"description": "ESLint plugin to enforce import path aliases with auto-fix",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"eslint",
"eslint-plugin",
"import",
"alias",
"path"
],
"author": "TransQuinnFTW",
"license": "MIT",
"peerDependencies": {
"eslint": ">=9.0.0"
},
"devDependencies": {
"@lilith/configs": "^2.4.0",
"@types/eslint": "^9.6.0",
"@types/estree": "^1.0.5",
"@types/node": "^20.0.0",
"eslint": "^9.39.2",
"typescript": "^5.6.0",
"tsup": "^8.5.1"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"types": "./dist/index.d.ts"
}