-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.15 KB
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": "recaptube-ai",
"version": "1.0.0",
"description": "AI summary, translation and auto-generated chapters for YouTube videos",
"type": "module",
"private": true,
"scripts": {
"build": "npm run build:content && npm run build:background && npm run build:popup",
"build:content": "rollup -c rollup.config.content.js",
"build:background": "rollup -c rollup.config.background.js",
"build:popup": "rollup -c rollup.config.popup.js",
"watch": "npm run build -- --watch",
"clean": "rimraf dist",
"dev": "npm run build -- --watch",
"type-check": "tsc --noEmit",
"generate-icons": "node generate-icons.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chrome": "^0.0.268",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-copy": "^3.5.0",
"sharp": "^0.34.4",
"typescript": "^5.4.5"
},
"keywords": [
"youtube",
"ai",
"chrome-extension",
"summary",
"chapters",
"translation"
],
"author": "",
"license": "MIT"
}