forked from kazuki-sf/YouTube_Summary_with_ChatGPT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
43
44
45
{
"name": "hercules_chrome_extension",
"version": "1.4.3",
"description": "TubeX:您的YouTube AI助手",
"main": "background.js",
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && webpack",
"build-release": "npm run clean && NODE_ENV=production webpack",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Lewis Zhang",
"license": "MIT",
"homepage": "",
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.4.0",
"jest": "^27.2.4",
"rimraf": "^3.0.2",
"webpack": "^5.59.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"animate.css": "^4.1.1",
"google-translate-api-browser": "^3.0.1",
"jquery": "^3.6.2",
"langchain": "^0.0.150",
"marked": "^9.1.2",
"microsoft-cognitiveservices-speech-sdk": "^1.32.0",
"openai": "^4.6.0"
}
}