-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.61 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.61 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
{
"name": "reverse-image-search",
"description": "Reverse Image Search",
"version": "4.4.3",
"author": "Brawl345",
"license": "Unlicense",
"repository": {
"url": "https://github.com/Brawl345/Image-Reverse-Search-WebExtension"
},
"main": "source/service-worker/service-worker.js",
"type": "module",
"scripts": {
"dev": "tsx build.ts",
"build": "cross-env NODE_ENV=\"production\" tsx build.ts",
"test": "vitest run",
"start:chrome": "web-ext run --no-reload -t chromium",
"start:firefox": "web-ext run --no-reload -t firefox-desktop",
"lint:types": "tsc --project tsconfig.json",
"lint:code": "biome lint",
"lint:web-ext": "npm run build && web-ext lint",
"web-ext:build": "npm run build && web-ext build --overwrite-dest",
"web-ext:upload": "npm run web-ext:build && web-ext sign --channel=listed",
"i18n:upload-sources": "crowdin upload sources",
"i18n:upload-translations": "crowdin upload translations",
"i18n:download": "crowdin download"
},
"webExt": {
"sourceDir": "./public/",
"run": {
"startUrl": ["about:debugging#/runtime/this-firefox"]
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bootstrap": "5.2.10",
"@types/chrome": "0.0.270",
"cross-env": "7.0.3",
"esbuild": "0.25.5",
"esbuild-sass-plugin": "3.3.1",
"esbuild-svelte": "0.9.3",
"globals": "16.2.0",
"sass": "1.78.0",
"svelte-preprocess": "6.0.3",
"tsx": "4.20.3",
"typescript": "5.8.3",
"vitest": "3.2.3",
"web-ext": "8.8.0"
},
"dependencies": {
"bootstrap": "5.3.6",
"svelte": "4.2.19"
}
}