-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
59 lines (59 loc) · 2.09 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
51
52
53
54
55
56
57
58
59
{
"name": "Tusk",
"description": "A modern keepass extension",
"version": "2.0.0",
"author": "Brandon Davis <brandon@subdavis.com>",
"license": "MIT",
"private": true,
"scripts": {
"clear": "rimraf --glob extension/dist extension/manifest.json 'extension.*'",
"dev": "run-s clear && cross-env NODE_ENV=development run-p 'dev:*'",
"dev:prepare": "esno scripts/prepare.ts",
"dev:web": "vite",
"dev:background": "run-s build:background -- --mode development",
"dev:js": "run-s build:js -- --mode development",
"build": "cross-env NODE_ENV=production run-s clear build:web build:prepare build:background build:js",
"build:ff": "cross-env NODE_ENV=production TARGET=firefox run-s clear build:web build:prepare build:background build:js",
"build:prepare": "esno scripts/prepare.ts",
"build:background": "vite build --config vite.config.background.mts",
"build:js": "vite build --config vite.config.content.mts",
"build:web": "vite build",
"pack:zip": "rimraf extension.zip && zip -r extension.zip extension/*"
},
"dependencies": {
"argon2-browser": "^1.18.0",
"axios": "^1.7.4",
"base64-arraybuffer": "^1.0.2",
"case": "^1.5.4",
"font-awesome": "^4.7.0",
"json-formatter-js": "^2.2.0",
"kdbxweb": "^2.1.1",
"materialize-css": "^1.0.0",
"pako": "^1.0.6",
"vue": "2",
"vue-simple-spinner": "^1.2.10",
"webdav": "^5.6.0",
"webextension-polyfill": "^0.12.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/webextension-polyfill": "^0.10.7",
"@vitejs/plugin-vue": "^5.1.1",
"@vitejs/plugin-vue2": "^2.3.1",
"bestzip": "^2.2.1",
"cross-env": "^7.0.3",
"esno": "^4.7.0",
"fs-extra": "^11.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"vite": "^5.3.6",
"vite-plugin-wasm": "^3.3.0"
}
}