-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "Bitbaguette",
"description": "A browser extension extending Bitbucket's interface with useful features",
"private": true,
"version": "1.26.11",
"type": "module",
"license": "MIT",
"scripts": {
"compile": "tsc --noEmit",
"dev": "vite build --watch --mode development",
"build": "rm -rf dist/* && vite build",
"build:zip": "npm run build && zip -r extension.zip dist",
"bump": "npm version",
"postbump": "./utils/sync-version.sh && git commit --amend --no-edit"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@types/resemblejs": "^4.1.3",
"@types/webextension-polyfill": "^0.10.0",
"@vitejs/plugin-vue": "^5.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite-plugin-web-extension": "^4.1.6",
"webextension-polyfill": "^0.12.0"
},
"dependencies": {
"@img-comparison-slider/vue": "^8.0.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"dayjs": "^1.11.10",
"pinia": "^2.2.1",
"resemblejs": "^5.0.0",
"vue": "^3.4.36",
"vuetify": "^3.6.14"
}
}