-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 KB
/
package.json
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
{
"name": "eslint-plugin-zod-openapi",
"version": "1.0.0",
"private": false,
"description": "Eslint rules for zod-openapi",
"homepage": "https://github.com/samchungy/eslint-plugin-zod-openapi#readme",
"bugs": {
"url": "https://github.com/samchungy/eslint-plugin-zod-openapi/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/samchungy/eslint-plugin-zod-openapi.git"
},
"license": "MIT",
"sideEffects": false,
"main": "./lib-commonjs/index.js",
"types": "./lib-types/index.d.ts",
"files": [
"lib*/**/*.d.ts",
"lib*/**/*.js",
"lib*/**/*.js.map",
"lib*/**/*.json"
],
"scripts": {
"build": "skuba build --module CommonJS --outDir lib-commonjs --project tsconfig.build.json && skuba build --allowJS false --declaration --emitDeclarationOnly --outDir lib-types --project tsconfig.build.json",
"format": "skuba format",
"lint": "skuba lint",
"release": "pnpm build && npm publish",
"test": "skuba test",
"test:ci": "skuba test --coverage",
"test:watch": "skuba test --watch"
},
"dependencies": {
"@typescript-eslint/utils": "^8.7.0"
},
"devDependencies": {
"@types/node": "22.10.5",
"@typescript-eslint/rule-tester": "^8.7.0",
"skuba": "9.1.0",
"typescript": "5.7.2",
"zod": "3.24.1",
"zod-openapi": "4.2.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.11"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"skuba": {
"entryPoint": "src/index.ts",
"template": "oss-npm-package",
"type": "package",
"version": "9.0.0-main-20240928013837"
}
}