-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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": "tab-modifier",
"private": true,
"version": "1.0.13",
"type": "module",
"scripts": {
"test": "vitest --run",
"watch:test": "vitest",
"watch:coverage": "npx vitest --coverage.enabled true",
"coverage": "npx vitest --run --coverage.enabled true",
"dev": "rm -rf ./dist && vite",
"tsc": "vue-tsc",
"build": "rm -rf ./dist && vite build",
"preview": "vite preview",
"build-zip": "rm -rf ./dist && rm -f tab-modifier.zip && yarn build && cd ./dist && zip -r ../tab-modifier.zip *"
},
"dependencies": {
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"vue": "^3.4.21",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.26",
"@types/chrome": "^0.0.268",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.19",
"daisyui": "^4.12.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.26.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "*",
"vite": "^5.4.6",
"vitest": "^2.0.5",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^2.0.24"
}
}