-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.4 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "notebooklm-client",
"version": "0.2.0",
"description": "Standalone NotebookLM client — generate podcasts, flashcards, mind maps via Google's NotebookLM",
"type": "module",
"bin": {
"notebooklm": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"scripts/setup-curl.mjs",
"SKILL.md",
"README.md",
"LICENSE"
],
"scripts": {
"postinstall": "node scripts/setup-curl.mjs || true",
"setup": "node scripts/setup-curl.mjs --force",
"prepublishOnly": "tsc",
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts"
},
"keywords": [
"notebooklm",
"google",
"podcast",
"audio",
"ai",
"notebook",
"flashcards",
"cli"
],
"author": "icebear0828",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/icebear0828/notebooklm-client.git"
},
"homepage": "https://github.com/icebear0828/notebooklm-client",
"dependencies": {
"commander": "^12.0.0",
"puppeteer-core": "npm:rebrowser-puppeteer-core@^24.0.0",
"undici": "^7.24.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.7.0",
"typescript": "^5.7.0",
"vitest": "^3.2.0"
},
"optionalDependencies": {
"tlsclientwrapper": "^1.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}