-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 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
35
36
37
38
39
40
{
"name": "pulumi-ai",
"version": "0.0.5",
"main": "./lib/index.js",
"repository": "https://github.com/pulumi/pulumi-ai",
"author": "Luke Hoban",
"license": "Apache-2.0",
"dependencies": {
"@pulumi/aws": "^4.38.1",
"@pulumi/aws-apigateway": "^1.0.1",
"@pulumi/awsx": "^0.32.0",
"@pulumi/eks": "^1.0.1",
"@pulumi/pulumi": "^3.73.0",
"chalk": "^4.1.2",
"open": "^8.4.2",
"openai": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^14.11.7",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typescript": "^4.3.5"
},
"scripts": {
"prepublish": "tsc",
"build": "tsc",
"start": "tsc && node ./lib/cli.js",
"test": "ts-mocha tests/**/*.test.ts"
},
"bin": {
"pulumi-ai": "./lib/cli.js"
},
"files": [
"lib"
],
"types": "lib/index.d.ts"
}