-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
53 lines (53 loc) · 2.1 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
{
"name": "carettab",
"type": "module",
"private": true,
"license": "GNU GPL 3.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:beta": "vite build --mode beta",
"build:firefox": "vite build --mode firefox",
"webext": "web-ext run --source-dir=dist",
"preview": "vite build --watch",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"compile": "vite build && web-ext build --source-dir=dist --artifacts-dir=artifacts --filename=\"carettab_chrome%{version}.zip\"",
"compile:chrome": "npm run compile",
"compile:edge": "vite build && web-ext build --source-dir=dist --artifacts-dir=artifacts --filename=\"carettab_edge%{version}.zip\"",
"compile:firefox": "vite build --mode firefox && web-ext build --source-dir=dist --artifacts-dir=artifacts --filename=\"carettab_firefox%{version}.zip\"",
"compile:beta": "vite build --mode beta && web-ext build --source-dir=dist --artifacts-dir=artifacts --filename=\"carettab_chrome_beta%{version}.zip\"",
"compile:all": "rimraf artifacts/ && rimraf dist/ && npm run compile:chrome && npm run compile:edge && npm run compile:firefox"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.3",
"convert": "^4.13.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"openai": "^3.2.1",
"pinia": "^2.0.28",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.12",
"@intlify/unplugin-vue-i18n": "^0.8.1",
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.3.0",
"postcss-html": "^1.5.0",
"prettier": "2.8.8",
"rimraf": "^5.0.0",
"sass": "^1.57.1",
"stylelint": "^15.6.0",
"stylelint-config-recommended-scss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"vite": "^4.3.3",
"web-ext": "^7.6.2"
}
}