38 lines
984 B
JSON
38 lines
984 B
JSON
{
|
|
"name": "eslint-plugin-drizzle",
|
|
"version": "0.2.3",
|
|
"description": "Eslint plugin for drizzle users to avoid common pitfalls",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"build": "tsc -b && pnpm cpy readme.md dist/",
|
|
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
|
|
"publish": "npm publish package.tgz"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintplugin",
|
|
"eslint-plugin",
|
|
"drizzle"
|
|
],
|
|
"author": "Drizzle Team",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/drizzle-team/drizzle-orm/tree/main/eslint-plugin-drizzle.git"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.1",
|
|
"@typescript-eslint/parser": "^6.10.0",
|
|
"@typescript-eslint/rule-tester": "^6.10.0",
|
|
"@typescript-eslint/utils": "^6.10.0",
|
|
"cpy-cli": "^5.0.0",
|
|
"eslint": "^8.53.0",
|
|
"typescript": "^5.2.2",
|
|
"vitest": "^3.1.3"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">=8.0.0"
|
|
}
|
|
}
|