-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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
{
"name": "stack-me-first",
"version": "5.0.0",
"displayName": "Stack Me First",
"author": "Anwesh Gangula",
"description": "Highlight and sort answers posted by current user in Stack overflow to the top",
"homepage": "https://github.com/AnweshGangula/StackMeFirst#readme",
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"dev": "vite",
"readmelinks": "npx remark README.md -o --use reference-links",
"serve:firefox": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/",
"serve:chrome": "web-ext run -t chromium --start-url \"https://google.com\" --source-dir ./dist/"
},
"license": "MIT",
"devDependencies": {
"@samrum/vite-plugin-web-extension": "^1.0.2",
"@sveltejs/vite-plugin-svelte": "^1.0.3",
"@types/webextension-polyfill": "^0.9.0",
"remark-cli": "^11.0.0",
"remark-reference-links": "^6.0.1",
"svelte": "^3.49.0",
"svelte-preprocess": "^4.10.7",
"vite": "~3.0.9",
"web-ext": "^7.2.0"
},
"dependencies": {
"mixpanel-browser": "^2.47.0",
"webextension-polyfill": "^0.10.0"
},
"type": "module"
}