-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.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
{
"name": "vidcord",
"private": true,
"version": "7.3.0",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.13.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"bundle:check": "node scripts/check-bundle-size.mjs",
"build-tools:check": "node scripts/check-build-tools.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"format": "prettier --write src",
"version:check": "node scripts/check-version.mjs",
"assets:check": "node scripts/check-assets.mjs",
"site:check": "prettier --check site/index.html site/styles.css site/script.js site/site.webmanifest wrangler.jsonc && prettier --check --parser markdown site/llms.txt site/llms-full.txt && node --check site/script.js && node scripts/check-site-structured-data.mjs && node scripts/check-sitemap.mjs && node scripts/check-assets.mjs && node scripts/check-version.mjs",
"preview": "vite preview",
"test": "vitest run",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-opener": "^2",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-react": "^6.0.1",
"esbuild": "^0.28.0",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3",
"typescript": "^5",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}