-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "surveyor.ai",
"version": "1.1.0",
"description": "",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "mocha -r dotenv/config **/*.test.ts",
"cli": "ts-node --esm ./src/cli.ts",
"build": "npx tsc -p tsconfig.json"
},
"bin": {
"surveyor": "./dist/src/cli.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/cli-progress": "^3.11.0",
"@types/figlet": "^1.5.6",
"@types/lodash": "^4.14.197",
"@types/mocha": "^10.0.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.4",
"ajv": "^8.12.0",
"async-retry": "^1.3.3",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"csv": "^6.3.1",
"event-iterator": "^2.0.0",
"figlet": "^1.6.0",
"glob": "^10.3.3",
"lodash": "^4.17.21",
"openai": "^3.3.0",
"p-queue": "^7.3.4",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.21.4"
}
}