-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.21 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "openapi-modifier",
"version": "0.0.41",
"description": "This package allows you to automate the process of modifying OpenAPI specifications by applying a set of predefined rules",
"repository": {
"type": "git",
"url": "https://github.com/itwillwork/openapi-modifier.git"
},
"bugs": {
"url": "https://github.com/itwillwork/openapi-modifier/issues"
},
"keywords": [
"openapi",
"openapi3",
"modify",
"change",
"format",
"automate",
"automatization",
"patch",
"merge",
"deepmerge",
"filter",
"convert",
"rename",
"cli"
],
"homepage": "https://github.com/itwillwork/openapi-modifier",
"files": [
"dist-types",
"dist",
"bin"
],
"main": "dist/src/index.js",
"types": "dist-types/src/index.d.ts",
"scripts": {
"test": "jest",
"clear": "rm -rf dist && rm -rf dist-types",
"prebuild": "npm run clear && npm run tools:generate-rule-types",
"build": "npm run build:types && npm run build:transpile",
"build:transpile": "tsc",
"build:types": "tsc --declaration --declarationDir dist-types",
"tools:generate-readme": "ts-node tools/generate-readme.ts",
"tools:generate-rule-types": "ts-node tools/generate-rule-types.ts",
"tools:generate-rule-readme": "ts-node tools/generate-rule-readme.ts",
"tools:generate-mcp-docs": "ts-node tools/generate-mcp-docs.ts",
"tools:generate-mcp-resources": "ts-node tools/generate-mcp-resources.ts"
},
"bin": {
"openapi-modifier": "./bin/openapi-modifier.js",
"simple-text-file-modifier": "./bin/simple-text-file-modifier.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"debug": "^4.3.4",
"deepmerge": "^4.3.1",
"json-stringify-nice": "^1.1.4",
"openapi-types": "^12.1.3",
"tmp": "^0.2.3",
"yaml": "^2.4.1",
"yargs-parser": "^21.1.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/json-stringify-nice": "^1.1.2",
"@types/node": "^20.11.30",
"@types/tmp": "^0.2.6",
"@types/yargs-parser": "^21.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}