-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.4 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.4 KB
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
70
71
72
73
74
75
76
{
"name": "beardify",
"version": "0.3.2",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"lint": "vue-tsc --noEmit && eslint src/**/*.{vue,ts} && stylelint ./src/**/*.{vue,scss}",
"build": "bun run lint && vite build",
"fix": "eslint src/**/*.{vue,ts} --fix && stylelint ./src/**/*.{vue,scss} --fix",
"preview": "bun run build && vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:debug": "tauri build --debug",
"vite:dev-build": "vite build --mode development",
"build:ci": "vite build",
"build:app": "bun run tauri build && bun run scripts/package-release.ts",
"release": "bun run scripts/release.ts"
},
"dependencies": {
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-deep-link": "^2.4.9",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-updater": "^2.10.1",
"@vueuse/motion": "^3.0.3",
"crypto-js": "^4.2.0",
"date-fns": "^4.4.0",
"dompurify": "^3.4.7",
"flag-icons": "^7.5.0",
"form-urlencoded": "^6.1.7",
"ky": "^2.0.2",
"oxlint": "^1.67.0",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"pkce-challenge": "^6.0.0",
"vue": "^3.5.35",
"vue-router": "^5.1.0",
"vue-slicksort": "^2.0.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rushstack/eslint-patch": "^1.16.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@tauri-apps/cli": "^2.11.2",
"@types/dompurify": "^3.2.0",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/compiler-sfc": "^3.5.35",
"@vue/eslint-config-typescript": "^14.7.0",
"@vueuse/core": "^14.3.0",
"eslint": "^10.4.1",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-plugin-vue": "^10.9.1",
"globals": "^17.6.0",
"normalize.css": "^8.0.1",
"postcss": "^8.5.15",
"postcss-html": "^1.8.1",
"sass": "^1.100.0",
"stylelint": "^17.12.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^8.1.1",
"stylelint-scss": "^7.1.1",
"typescript": "6.0.3",
"vite": "^8.0.14",
"vite-plugin-static-copy": "^4.1.0",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.3.3"
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.28.0"
}
}