This repository was archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.06 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.06 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
{
"name": "@wrtnio/openai-function-schema",
"version": "0.2.6",
"description": "OpenAI LLM function schema from OpenAPI (Swagger) document",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"module": "lib/index.mjs",
"bin": {
"wofs": "lib/executable/wofs.js"
},
"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": "npm run test:api && npm run test:cli",
"test:api": "node bin/test",
"test:cli": "node bin/src/executable/wofs.js --input test/swagger.json --output test/plain.json --keyword false",
"package:latest": "ts-node deploy/index.ts --tag latest",
"package:next": "ts-node deploy/index.ts --tag next",
"examples": "ts-node deploy/examples.ts"
},
"keywords": [
"openai",
"llm",
"function",
"call",
"calling",
"schema",
"openapi",
"swagger",
"ai",
"chat",
"gpt"
],
"author": "",
"license": "ISC",
"dependencies": {
"@nestia/fetcher": "^3.11.1",
"@samchon/openapi": "^0.4.6",
"commander": "^10.0.0",
"inquirer": "^8.2.5",
"typia": "^6.8.0"
},
"devDependencies": {
"@nestia/core": "^3.10.0",
"@nestia/e2e": "^0.7.0",
"@nestia/sdk": "^3.10.0",
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
"@nestjs/platform-express": "^10.3.10",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/inquirer": "^8.2.5",
"@types/node": "^20.14.9",
"@types/uuid": "^10.0.0",
"chalk": "^4.1.2",
"nestia": "^5.3.1",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"typescript": "^5.5.4",
"typescript-transform-paths": "^3.4.7",
"uuid": "^10.0.0"
},
"files": [
"lib",
"src",
"LICENSE",
"README.md"
],
"private": true
}