-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.14 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
{
"name": "notebooklm-source-bulk-delete",
"version": "0.1.1",
"private": true,
"type": "module",
"description": "Chrome/Edge extension for bulk deleting selected NotebookLM sources.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/donozhang1992/notebooklm_source_batch_delete.git"
},
"bugs": {
"url": "https://github.com/donozhang1992/notebooklm_source_batch_delete/issues"
},
"homepage": "https://github.com/donozhang1992/notebooklm_source_batch_delete#readme",
"scripts": {
"build": "esbuild extension/src/content.js --bundle --format=iife --outfile=extension/dist/content.js",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npm run build && playwright test",
"test:all": "npm run test && npm run test:e2e",
"package:extension": "npm run build && powershell -NoProfile -ExecutionPolicy Bypass -File scripts/package-extension.ps1",
"screenshots:store": "npm run build && node scripts/create-store-screenshots.mjs"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"esbuild": "^0.21.0",
"jsdom": "^24.1.0",
"vitest": "^1.6.0"
}
}