-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 937 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 937 Bytes
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
{
"name": "har2oapi",
"version": "0.0.1",
"keywords": [
"har",
"openapi",
"oapi",
"network"
],
"description": "",
"author": "Vsevolod Tsiliurik",
"license": "AGPL-3.0-or-later",
"type": "module",
"dependencies": {
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"har-to-openapi": "^2.1.1",
"strip-json-comments": "^5.0.3",
"type-fest": "^5.0.1",
"typia": "^9.7.2",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/har-format": "^1.2.16",
"@types/node": "^24.3.0",
"tsc-esm-fix": "^3.1.2"
},
"require": [
"tsconfig-paths/register"
],
"types": "dist/types.d.ts",
"main": "./src/main.ts",
"bin": {
"har2oapi": "./src/main.ts"
},
"scripts": {
"build": "node build/main.js",
"start": "node .build/main.js",
"debug": "node --inspect-brk=9229 .build/main.js --input .examples/HAR.json"
}
}