forked from mrishab/google-photos-delete-tool
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 897 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 897 Bytes
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
{
"name": "google-photos-delete-tool",
"version": "2.0.2",
"private": true,
"description": "Bulk delete photos from Google Photos \u2014 Chrome extension & standalone script",
"author": "Kyle Tse <shtse8@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "bun run scripts/build.ts --watch",
"build": "bun run scripts/build.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "vitest run",
"test:watch": "vitest",
"release": "standard-version",
"zip": "cd dist/extension && zip -r ../../google-photos-delete-tool.zip ."
},
"devDependencies": {
"@types/chrome": "^0.0.287",
"archiver": "^7.0.1",
"eslint": "^9.19.0",
"standard-version": "^9.5.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.1.0",
"vitest": "^4.0.18"
}
}