-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 850 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": "@bhodgk/aeos-plugin-generator",
"version": "0.0.1",
"description": "Aeos Plugin Generator - Generate a plugin for Aeos using a single prompt",
"main": "build/generatorPlugin.js",
"scripts": {
"start": "ts-node src/app.ts",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "rm -rf test-data; mkdir test-data; cd test-data; jest .."
},
"bin": {
"aeos-plugin-generator": "./build/app.js"
},
"author": "Brett Hodgkins",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@bhodgk/aeos": "^1.1.0",
"commander": "^10.0.1",
"dotenv": "^16.0.3",
"extract-zip": "^2.0.1",
"openai": "^3.2.1"
}
}