eslint-plugin-drizzle 0.2.3-fff21fc → 1.0.0-beta.2-e93475f
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +36 -35
- package/tsconfig.tsbuildinfo +1 -0
package/package.json
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
2
|
+
"name": "eslint-plugin-drizzle",
|
|
3
|
+
"version": "1.0.0-beta.2-e93475f",
|
|
4
|
+
"description": "Eslint plugin for drizzle users to avoid common pitfalls",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "vitest run",
|
|
8
|
+
"build:artifact": "pnpm run build",
|
|
9
|
+
"build": "tsc -b && pnpm cpy readme.md dist/",
|
|
10
|
+
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
|
|
11
|
+
"pack:artifact": "pnpm run pack",
|
|
12
|
+
"publish": "npm publish package.tgz"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"eslint",
|
|
16
|
+
"eslintplugin",
|
|
17
|
+
"eslint-plugin",
|
|
18
|
+
"drizzle"
|
|
19
|
+
],
|
|
20
|
+
"author": "Drizzle Team",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/drizzle-team/drizzle-orm/tree/main/eslint-plugin-drizzle.git"
|
|
24
|
+
},
|
|
25
|
+
"license": "Apache-2.0",
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/node": "^20.10.1",
|
|
28
|
+
"@typescript-eslint/parser": "^6.10.0",
|
|
29
|
+
"@typescript-eslint/rule-tester": "^6.10.0",
|
|
30
|
+
"@typescript-eslint/utils": "^6.10.0",
|
|
31
|
+
"cpy-cli": "^5.0.0",
|
|
32
|
+
"eslint": "^8.53.0",
|
|
33
|
+
"typescript": "^5.9.2"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"eslint": ">=8.0.0"
|
|
37
|
+
}
|
|
37
38
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["../src/enforce-delete-with-where.ts","../src/enforce-update-with-where.ts","../src/index.ts","../src/configs/all.ts","../src/configs/recommended.ts","../src/utils/ast.ts","../src/utils/options.ts","../package.json"],"version":"5.9.3"}
|