-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.19 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
46
47
48
{
"name": "youtube-transcript-gpt",
"version": "0.1.0",
"author": "zhangted",
"description": "Get youtube summaries injected automatically if the video has a transcript",
"type": "module",
"license": "GNUv3",
"keywords": [
"chrome-extension",
"preact",
"vite",
"create-chrome-ext",
"youtube",
"chatgpt"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"fmt": "prettier --write '**/*.{tsx,ts,json,css,scss,md}'"
},
"dependencies": {
"@types/uuid": "^9.0.1",
"@types/webextension-polyfill": "^0.10.0",
"eventsource-parser": "^1.0.0",
"expiry-map": "^2.0.0",
"get-video-id": "^3.6.5",
"gpt-tokens": "^1.0.9",
"map-expire": "^1.0.2",
"preact": "^10.8.2",
"uuid": "^9.0.0",
"vite-plugin-top-level-await": "^1.3.1",
"vite-plugin-wasm": "^3.2.2",
"webextension-polyfill": "^0.10.0",
"youtube-browser-api": "^0.0.3"
},
"devDependencies": {
"@crxjs/vite-plugin": "^1.0.12",
"@preact/preset-vite": "^2.3.0",
"@types/chrome": "^0.0.237",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vite": "^2.9.13"
}
}