-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.02 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.02 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
{
"name": "10minions-engine",
"version": "0.0.0-development",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"compile": "rimraf dist/* && tsc",
"lint": "eslint src --ext ts",
"prepareTest": "npx tsx ./score/prepareTestFiles.ts",
"test": "npx tsx ./tests/runTests.ts",
"test-score": "npx tsx ./score/runScore.ts -c 1",
"example-minion-task": "npx tsx ./examples/runMinionTask/runMinionTask.ts",
"example-step-evolve": "npx tsx ./examples/stepEvolveBasic/stepEvolveBasic.ts",
"example-LLM-custom-task-with-step-evolve": "npx tsx ./examples/runLLMCustomTaskWithStepEvolve/runLLMCustomTaskWithStepEvolve.ts",
"watch": "tsc --watch"
},
"dependencies": {
"async-lock": "^1.4.0",
"dotenv": "^16.3.1",
"firebase": "^9.9.2",
"firebase-admin": "^11.9.0",
"gpt-tokenizer": "^2.1.1",
"jsonschema": "^1.4.1",
"node-fetch": "^3.3.1",
"openai": "^3.2.1",
"protobufjs": "^6.11.4",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.21.4"
},
"devDependencies": {
"@10clouds/eslint-config": "^2.0.0-pre.14",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@inquirer/confirm": "^2.0.4",
"@inquirer/prompts": "^2.3.0",
"@inquirer/select": "^1.2.3",
"@types/async": "^3.2.20",
"@types/async-lock": "^1.4.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vscode/test-electron": "^2.3.0",
"async": "^3.2.4",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"date-and-time": "^3.0.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"process": "^0.11.10",
"rimraf": "^5.0.1",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}