-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "openapi-paths-gen",
"version": "1.0.34",
"description": "A TypeScript utility for generating strongly-typed API path functions from an OpenAPI YAML specification.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"build": "tsc && npm run copy-types",
"copy-types": "copyfiles -u 1 src/types/index.d.ts dist/",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "npm run build",
"release": "node scripts/release.mjs",
"rollback": "node scripts/rollback.js"
},
"standard-version": {
"preset": "angular"
},
"keywords": [
"typescript",
"openapi",
"api",
"generator",
"paths"
],
"author": "Matthew Ngo <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/maemreyo/openapi-paths-gen.git"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.16.2",
"copyfiles": "^2.4.1",
"js-yaml": "^4.1.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"p-map": "^7.0.2",
"tsx": "^4.19.0",
"winston": "^3.14.2"
}
}