-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 916 Bytes
/
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
{
"name": "esbuild-function",
"version": "1.0.0",
"description": "A project using esbuild-wasm for compiling JavaScript within an OpenAI tool.",
"main": "index.js",
"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"
},
"dependencies": {
"axios": "^1.6.2",
"esbuild-wasm": "^0.14.42",
"localforage": "^1.10.0",
"openai-function-calling-tools": "^6.0.0",
"zod": "^3.0.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^16.18.68",
"jsdom": "^23.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"vitest": "^0.32.2"
},
"author": "Matt Hoffner",
"license": "MIT"
}