67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "@n8n/eslint-plugin-community-nodes",
|
|
"type": "module",
|
|
"version": "0.6.0",
|
|
"main": "./dist/plugin.js",
|
|
"types": "./dist/plugin.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@typescript-eslint/utils": "^8.35.0",
|
|
"fastest-levenshtein": "1.0.16"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/rule-tester": "^8.35.0",
|
|
"eslint-doc-generator": "^2.2.2",
|
|
"eslint-plugin-eslint-plugin": "^7.0.0",
|
|
"rimraf": "6.0.1",
|
|
"typescript": "5.9.2",
|
|
"vitest": "^3.1.3",
|
|
"@n8n/typescript-config": "1.3.0",
|
|
"@n8n/vitest-config": "1.5.0"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">= 9"
|
|
},
|
|
"eslint-doc-generator": {
|
|
"configEmoji": [
|
|
[
|
|
"recommended",
|
|
"✅"
|
|
],
|
|
[
|
|
"recommendedWithoutN8nCloudSupport",
|
|
"☑️"
|
|
]
|
|
]
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"homepage": "https://n8n.io",
|
|
"author": {
|
|
"name": "Jan Oberhauser",
|
|
"email": "jan@n8n.io"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/n8n-io/n8n.git"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.build.json",
|
|
"build:docs": "eslint-doc-generator",
|
|
"clean": "rimraf dist .turbo",
|
|
"dev": "pnpm watch",
|
|
"format": "biome format --write .",
|
|
"format:check": "biome ci .",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix",
|
|
"lint:docs": "eslint-doc-generator --check",
|
|
"test": "vitest run",
|
|
"test:dev": "vitest",
|
|
"typecheck": "tsc --noEmit",
|
|
"watch": "tsc --watch --project tsconfig.build.json"
|
|
}
|
|
} |