-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
{
"scripts": {
"dev-legacy:background": "rollup -c rollup.config.js --watch",
"build-legacy:background": "rollup -c rollup.config.js",
"dev:options": "vite --host",
"dev:background": "esbuild src/background.ts --bundle --outfile=extension/background.js --watch",
"dev:test": "vitest",
"build:options": "vite build",
"build:check": "vue-tsc --noEmit",
"build:background": "esbuild src/background.ts --bundle --outfile=extension/background.js",
"test:ts": "vue-tsc --noEmit",
"test:eslint": "eslint \"src/**/*.{vue,ts}\"",
"test:unit": "vitest run",
"test:browser": "playwright test",
"test": "run-s test:ts test:eslint test:unit test:browser",
"dev": "run-p dev:options dev:background",
"build": "run-s build:options build:background",
"pack": "node pack",
"deploy": "run-s test build:options build:background pack"
},
"dependencies": {
"@a11y/focus-trap": "^1.0.5",
"@babel/types": "^7.23.0",
"@material/mwc-button": "^0.27.0",
"@material/mwc-checkbox": "^0.27.0",
"@material/mwc-fab": "^0.27.0",
"@material/mwc-formfield": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@material/mwc-radio": "^0.27.0",
"@material/mwc-select": "^0.27.0",
"@material/mwc-snackbar": "^0.27.0",
"@material/mwc-switch": "^0.27.0",
"@material/mwc-textarea": "^0.27.0",
"@material/mwc-textfield": "^0.27.0",
"@material/mwc-top-app-bar": "^0.27.0",
"@material/mwc-top-app-bar-fixed": "^0.27.0",
"@vueuse/core": "^10.5.0",
"@vueuse/shared": "^10.5.0",
"destr": "^2.0.1",
"gsap": "^3.12.2",
"monomitter": "^2.0.0",
"php-date": "^4.0.1",
"pinia": "^2.1.7",
"vue": "^3.3.4",
"vuedraggable": "^4.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@playwright/test": "^1.39.0",
"@types/chrome": "^0.0.246",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/compiler-sfc": "^3.3.4",
"archiver": "^6.0.1",
"esbuild": "^0.19.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vue": "^9.17.0",
"npm-run-all": "^4.1.5",
"sass": "^1.69.3",
"type-fest": "^4.4.0",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.19"
}
}