-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.13 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
{
"name": "alexa-gpt",
"version": "1.0.0",
"description": "An Alexa Skill that uses Chat GPT to answer your questions.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"webpack": "webpack",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryanleemoore/alexa-gpt.git"
},
"author": "Bryan Moore",
"license": "ISC",
"bugs": {
"url": "https://github.com/bryanleemoore/alexa-gpt/issues"
},
"homepage": "https://github.com/bryanleemoore/alexa-gpt#readme",
"devDependencies": {
"@types/node": "^14.14.41",
"ask-cli": "^2.22.4",
"ask-sdk-model": "^1.35.1",
"npm-check-updates": "^16.6.3",
"prettier": "^2.2.1",
"ts-loader": "^9.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.34.0",
"webpack-cli": "^4.6.0",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"ask-sdk-core": "^2.12.1",
"ask-sdk-dynamodb-persistence-adapter": "^2.12.1",
"ask-sdk-local-debug": "^1.1.0",
"aws-sdk": "^2.1322.0",
"openai": "^3.1.0"
}
}