-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 KB
/
package.json
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
{
"name": "reverse-image-search",
"description": "Reverse Image Search",
"version": "4.3.1",
"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",
"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"
},
"webExt": {
"sourceDir": "./public/",
"run": {
"startUrl": ["about:debugging#/runtime/this-firefox"]
}
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bootstrap": "5.2.10",
"@types/chrome": "0.0.270",
"cross-env": "7.0.3",
"esbuild": "0.23.0",
"esbuild-sass-plugin": "3.3.1",
"esbuild-svelte": "0.8.1",
"globals": "15.9.0",
"sass": "1.77.8",
"svelte-preprocess": "6.0.2",
"tsx": "4.17.0",
"typescript": "5.5.4",
"vitest": "^2.0.5",
"web-ext": "8.2.0"
},
"dependencies": {
"bootstrap": "5.3.3",
"svelte": "4.2.19"
}
}