-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@samchon/openapi",
"version": "2.0.0-dev.20241123-3",
"description": "OpenAPI definitions and converters for 'typia' and 'nestia'.",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"typings": "./lib/index.d.ts",
"scripts": {
"prepare": "ts-patch install",
"build": "npm run build:main && npm run build:test",
"build:main": "rimraf lib && tsc && rollup -c",
"build:test": "rimraf bin && tsc -p test/tsconfig.json",
"dev": "npm run build:test -- --watch",
"test": "node bin/test"
},
"keywords": [
"swagger",
"openapi",
"converter",
"migrate",
"typia",
"nestia"
],
"repository": {
"type": "git",
"url": "https://github.com/samchon/openapi"
},
"author": "Jeongho Nam",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/openapi/issues"
},
"homepage": "https://github.com/samchon/openapi",
"devDependencies": {
"@google/generative-ai": "^0.21.0",
"@nestia/core": "4.0.0-dev.20241116",
"@nestia/e2e": "0.7.0",
"@nestia/fetcher": "4.0.0-dev.20241116",
"@nestia/sdk": "4.0.0-dev.20241116",
"@nestjs/common": "^10.4.1",
"@nestjs/core": "^10.4.1",
"@nestjs/platform-express": "^10.4.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.7",
"@types/uuid": "^10.0.0",
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"dotenv-expand": "^12.0.0",
"js-yaml": "^4.1.0",
"nestia": "^6.0.1",
"openai": "^4.72.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.18.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"tstl": "^3.0.0",
"typescript": "^5.6.3",
"typescript-transform-paths": "^3.4.7",
"typia": "7.0.0-dev.20241123",
"uuid": "^10.0.0"
},
"sideEffects": false,
"files": [
"lib",
"src",
"README.md"
]
}