-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.43 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "eslint-plugin-import-zod",
"version": "1.2.1",
"description": "ESLint plugin to enforce namespace imports for zod",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/samchungy/eslint-plugin-import-zod.git"
},
"scripts": {
"test": "vitest run",
"build": "tsdown",
"release": "pnpm build && changeset publish"
},
"files": [
"dist"
],
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"zod",
"imports"
],
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/eslint": "^8.56.0",
"@types/estree": "^1.0.1",
"@types/node": "^20.5.7",
"@typescript-eslint/rule-tester": "^8.35.1",
"@typescript-eslint/utils": "^8.35.1",
"eslint": "^9.30.1",
"tsdown": "0.12.9",
"typescript": "^5.2.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@typescript-eslint/utils": "^8.35.1",
"eslint": ">=9"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"provenance": true
},
"engines": {
"node": ">=20"
}
}