-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
{
"name": "redirector",
"version": "1.0.1",
"description": "Allows you to set custom redirects. It is useful e.g. for redirecting popular sites to alternative frontends",
"license": "MIT",
"scripts": {
"dev": "vite --port=8002",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"dependencies": {
"@vueuse/core": "^10.11.0",
"vue": "^3.4.31"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.3",
"@samrum/vite-plugin-web-extension": "^5.1.1",
"@types/chrome": "^0.0.268",
"@types/node": "^22.7.7",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.29.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "~5.6.3",
"vite": "^5.3.6",
"vue-tsc": "^2.1.6"
}
}