-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
43 lines (43 loc) · 1.46 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
{
"name": "qownnotes-web-companion",
"version": "2024.8.0",
"description": "This is a companion extension for QOwnNotes to interact with the note taking desktop application.",
"author": "Patrizio Bekerle <patrizio@bekerle.com>",
"license": "GPL",
"productName": "QOwnNotes Web Companion",
"scripts": {
"lint": "eslint --ext .js,.vue ./",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"link-firefox": "ln -sf ./manifest.firefox.json ./src-bex/manifest.json",
"link-chrome": "ln -sf ./manifest.chrome.json ./src-bex/manifest.json",
"dev": "quasar dev -m bex",
"dev-firefox": "npm run link-firefox && npm run dev",
"dev-chrome": "npm run link-chrome && npm run dev",
"build": "quasar build -m bex",
"build-firefox": "npm run link-firefox && npm run build",
"build-chrome": "npm run link-chrome && npm run build"
},
"dependencies": {
"@quasar/cli": "^2.3.0",
"@quasar/extras": "^1.16.4",
"events": "^3.3.0",
"quasar": "^2.8.0",
"vue": "^3.2.29",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@quasar/app-vite": "^1.4.3",
"autoprefixer": "^10.4.2",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-vue": "^9.0.0",
"postcss": "^8.4.14",
"prettier": "^2.5.1"
},
"engines": {
"node": "^20 || ^18 || ^16",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}