-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.24 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.24 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "picpicker",
"version": "2.3.3",
"author": "Ariel Flesler <aflesler@gmail.com>",
"displayName": "PicPicker",
"gecko_id": "picpicker@flesler.com",
"type": "module",
"description": "Privacy-first browser extension to extract all images from any webpage with one click",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:chrome": "npm run build",
"build:firefox": "FIREFOX=1 npm run build && npm run lint:addon dist/",
"build:check": "tsc --noEmit",
"build:watch": "tsup --watch",
"build:zip": "cd dist && zip -r ../${npm_package_name}-${npm_package_version}.zip * && cd ..",
"build:source": "bin/export-source.sh",
"build:clean": "rimraf dist/* *.tsbuildinfo *.zip",
"build:prod": "npm run build:clean && npm run lint:full && NODE_ENV=production npm run build && npm run build:zip",
"build:prod:firefox": "FIREFOX=1 npm run build:prod && npm run build:source && npm run lint:addon ${npm_package_name}-${npm_package_version}.zip",
"dev": "npm run build:watch",
"ts": "tsx",
"eslint": "eslint --cache --cache-strategy content",
"lint": "npm run eslint -- 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"lint:full": "npm run build:check && npm run lint:fix",
"lint:addon": "addons-linter --log-level=warn --enable-data-collection-permissions",
"test": "npm run lint:full",
"prepack": "npm run build:clean && npm run test && npm run build:prod",
"publish:webstore": "npm run prepack && npm run webstore:upload",
"webstore:auth": "chrome-webstore-upload auth --config .webstore-upload-config.json",
"webstore:upload": "chrome-webstore-upload upload --source ${npm_package_name}-${npm_package_version}.zip --auto-publish false --config .webstore-upload-config.json",
"webstore:publish": "chrome-webstore-upload publish --config .webstore-upload-config.json",
"version:patch": "bin/release.sh patch",
"version:minor": "bin/release.sh minor",
"version:major": "bin/release.sh major"
},
"keywords": [
"images",
"photos",
"browser-extension",
"image-extraction",
"image-downloader",
"bulk-download",
"save-images",
"photo-extractor",
"image-scraper",
"download-photos",
"extract-images",
"mass-download",
"website-images",
"image-saver"
],
"homepage": "https://chromewebstore.google.com/detail/picpicker/mkiilhjbheleblbeegpbpnffkinapakn",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flesler/picpicker.git"
},
"bugs": {
"url": "https://github.com/flesler/picpicker/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"srcset": "^5.0.2",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/webextension-polyfill": "^0.12.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"addons-linter": "^7.20.0",
"auto-changelog": "^2.5.0",
"chrome-webstore-upload-cli": "^3.3.2",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.57.0",
"eslint-plugin-no-unsanitized": "^4.1.4",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}