-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
115 lines (115 loc) · 2.91 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "openai-function-calling-tools",
"version": "0.0.1",
"description": "OpenAI Function calling tools",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"package.json",
".gitignore",
"pnpm-lock.yaml"
],
"scripts": {
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"watch": "tsc --outDir dist/ --watch",
"test": "vitest run",
"coverage": "vitest run --coverage",
"test:watch": "vitest --watch"
},
"keywords": [
"openai",
"open",
"ai",
"gpt-3",
"gpt3",
"function calling"
],
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"preset": "conventionalcommits",
"extends": "@semantic-release/npm",
"plugins": [
[
"semantic-release-gitmoji",
{
"releaseRules": {
"major": [
":boom:",
":fire:",
":rotating_light:",
":boom::fire:",
":boom::rotating_light:",
":boom::fire::rotating_light:",
":zap:"
],
"minor": [
":sparkles:",
":lipstick:",
":tada:",
":sparkles::lipstick:",
":sparkles::tada:",
":art:"
],
"patch": [
":bug:",
":wrench:",
":ambulance:",
":gear:",
":lock:",
":bug::ambulance:",
":bug::lock:",
":heavy_plus_sign",
":ambulance::lock:"
]
}
}
],
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"author": "johannli",
"license": "MIT",
"repository": "johannlai/openai-function-calling-tools",
"dependencies": {
"cheerio": "1.0.0-rc.12",
"esprima": "^4.0.1",
"expr-eval": "^2.0.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"openai": "^3.3.0",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.21.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^20.3.1",
"@types/pako": "^2.0.0",
"@vitest/coverage-v8": "^0.32.2",
"clean-pkg-json": "^1.2.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"semantic-release": "20.1.3",
"semantic-release-gitmoji": "^1.6.3",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"vitest": "^0.32.2",
"webpack": "^5.87.0",
"webpack-cli": "^5.1.4"
}
}