forked from AnInsomniacy/motrix-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.55 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.55 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "motrix-next",
"private": true,
"version": "3.5.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.{ts,vue,css,json}'",
"format:check": "prettier --check 'src/**/*.{ts,vue,css,json}'",
"tauri": "tauri",
"prepare": "husky"
},
"packageManager": "pnpm@10.30.3",
"dependencies": {
"@bany/curl-to-json": "^1.2.10",
"@material/material-color-utilities": "^0.4.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.7",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-sql": "^2.3.2",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.10.0",
"@vicons/ionicons5": "^0.13.0",
"@vueuse/core": "^14.2.1",
"axios": "^1.13.6",
"bencode": "^4.0.0",
"dompurify": "^3.3.2",
"lodash-es": "^4.17.23",
"marked": "^17.0.4",
"marked-alert": "^2.1.2",
"naive-ui": "^2.43.2",
"pinia": "^3.0.4",
"tauri-plugin-locale-api": "^2.0.1",
"vue": "^3.5.13",
"vue-i18n": "^11.2.8",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^11.0.7",
"@tauri-apps/cli": "^2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.3.5",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@unocss/preset-uno": "^66.6.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"eslint": "^10.0.3",
"eslint-plugin-vue": "^10.8.0",
"happy-dom": "^15.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"typescript": "~5.6.2",
"unocss": "^66.6.2",
"vite": "^6.0.3",
"vitest": "^4.0.0",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^2.1.10"
},
"lint-staged": {
"src/**/*.{ts,vue}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.css": [
"prettier --write"
]
}
}