-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "youtube_summary_with_chatgpt",
"version": "1.0.0",
"description": "YouTube Summary with ChatGPT",
"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": "git+https://github.com/kazuki-sf/youtube_summary.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/kazuki-sf/youtube_summary/issues"
},
"homepage": "https://github.com/kazuki-sf/youtube_summary#readme",
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"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": {
"jquery": "^3.6.2"
}
}