-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.32 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.32 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
88
89
90
91
92
93
94
95
96
97
{
"name": "open-diff",
"version": "1.2.0",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/kygo8/open-diff.git"
},
"bugs": {
"url": "https://github.com/kygo8/open-diff/issues"
},
"homepage": "https://github.com/kygo8/open-diff#readme",
"type": "module",
"packageManager": "pnpm@11.9.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"stylelint": "stylelint \"src/**/*.{css,vue}\" --max-warnings=0",
"stylelint:fix": "stylelint \"src/**/*.{css,vue}\" --fix",
"ui:screens": "node scripts/capture-ui-screenshots.mjs",
"format": "prettier . --write",
"format:check": "prettier . --check",
"rust:fmt": "cargo fmt --all --manifest-path src-tauri/Cargo.toml",
"rust:fmt:check": "cargo fmt --all --manifest-path src-tauri/Cargo.toml -- --check",
"rust:clippy": "cargo clippy --workspace --all-targets --manifest-path src-tauri/Cargo.toml -- -D warnings",
"quality": "corepack pnpm format:check && corepack pnpm lint && corepack pnpm stylelint && corepack pnpm typecheck && corepack pnpm rust:fmt:check && corepack pnpm rust:clippy",
"quality:fix": "corepack pnpm format && corepack pnpm lint:fix && corepack pnpm stylelint:fix && corepack pnpm rust:fmt",
"prepare": "husky",
"typecheck": "vue-tsc --noEmit",
"test": "corepack pnpm test:unit && corepack pnpm test:e2e",
"test:e2e": "playwright test",
"test:unit": "vitest run",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:linux:deb": "bash scripts/linux/package-deb.sh",
"tauri:build:linux:rpm": "bash scripts/linux/package-rpm.sh",
"tauri:build:macos": "bash scripts/macos/package-macos.sh",
"tauri:portable:windows": "pwsh -NoProfile -ExecutionPolicy Bypass -File scripts/windows/package-portable.ps1"
},
"dependencies": {
"@lucide/vue": "1.31.0",
"@tauri-apps/api": "2.11.1",
"@vueuse/core": "14.4.0",
"katex": "0.18.4",
"naive-ui": "2.44.1",
"pinia": "4.0.3",
"vue": "3.5.41",
"vue-router": "5.2.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.62.1",
"@stylistic/eslint-plugin": "5.10.0",
"@tauri-apps/cli": "2.11.4",
"@types/node": "26.2.0",
"@vitejs/plugin-vue": "6.0.8",
"@vue/test-utils": "2.4.11",
"eslint": "10.8.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.10.0",
"globals": "17.11.0",
"husky": "9.1.7",
"jsdom": "29.1.1",
"lint-staged": "17.3.0",
"postcss-html": "2.0.0",
"prettier": "3.9.6",
"stylelint": "17.14.0",
"stylelint-config-recommended-vue": "2.0.0",
"stylelint-config-standard": "40.0.0",
"stylelint-order": "8.1.1",
"typescript": "5.9.3",
"typescript-eslint": "8.67.0",
"vite": "8.2.1",
"vitest": "4.1.9",
"vue-eslint-parser": "10.4.1",
"vue-tsc": "3.3.9"
},
"lint-staged": {
"*.{ts,vue,js,mjs,cjs,json,md,css}": [
"prettier --write"
],
"*.{ts,vue,js,mjs,cjs}": [
"eslint --fix --max-warnings=0"
],
"*.{css,vue}": [
"stylelint --fix --max-warnings=0"
],
"*.rs": [
"cargo fmt --manifest-path src-tauri/Cargo.toml --"
]
}
}