forked from null-dev/firefox-profile-switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.73 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
{
"name": "firefox-profile-switcher",
"version": "2.0.0",
"displayName": "Profile Switcher for Firefox",
"author": "null-dev",
"description": "Create, manage and switch between browser profiles seamlessly.",
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"dev": "vite",
"serve:firefox": "npm run web-ext -- run --start-url \"about:debugging#/runtime/this-firefox\"",
"serve:chrome": "npm run web-ext -- run -t chromium --start-url \"https://google.com\"",
"check": "svelte-check --tsconfig ./tsconfig.json",
"package": "npm run build && npm run web-ext -- build --overwrite-dest",
"sign": "npm run build && npm run web-ext -- sign --channel=unlisted --api-key=$AMO_JWT_ISSUER --api-secret=$AMO_JWT_SECRET",
"web-ext": "web-ext --source-dir ./dist/ --no-config-discovery --config=web-ext-config.cjs"
},
"license": "MIT",
"devDependencies": {
"@samrum/vite-plugin-web-extension": "^2.2.0",
"@sveltejs/vite-plugin-svelte": "^2.4.1",
"@tsconfig/svelte": "^3.0.0",
"@types/marked": "^4.0.8",
"@types/webextension-polyfill": "^0.9.2",
"@untemps/svelte-use-tooltip": "^2.8.0",
"animejs": "^3.2.1",
"svelte": "^3.55.0",
"svelte-check": "^3.0.1",
"svelte-dnd-action": "github:null-dev/svelte-dnd-action-nd.git#diff",
"svelte-highlight": "^6.2.1",
"svelte-preprocess": "^5.0.0",
"magic-string": "^0.30.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "~4.3.9",
"web-ext": "^7.4.0"
},
"dependencies": {
"@zerodevx/svelte-toast": "^0.7.2",
"compare-versions": "^4.1.3",
"fuse.js": "^6.6.2",
"marked": "^4.0.17",
"vanilla-lazyload": "^17.8.2",
"webextension-polyfill": "^0.9.0"
},
"type": "module"
}