-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 912 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
33
34
{
"name": "structura",
"version": "0.0.1",
"description": "A new meta programming language for AI systems",
"main": "main.ts",
"scripts": {
"start": "npx ts-node main.ts $npm_config_file",
"start:interactive": "npx ts-node main.ts $npm_config_file --interactive",
"debug": "npx nodemon main.ts $npm_config_file",
"debug:interactive": "npx nodemon main.ts $npm_config_file --interactive",
"generate": "npx ts-node test/generate-new-program.ts",
"example": "npx ts-node test/run_example.ts $1"
},
"keywords": [
"openai",
"typescript",
"gpt",
"gpt3",
"ai"
],
"author": "Miguel Santos",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"jasmine": "^4.6.0",
"openai": "^3.3.0",
"prompt-sync": "^4.2.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/prompt-sync": "^4.2.0"
}
}