-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.16 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
98
{
"name": "novercode",
"private": true,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"set-version": "npx tsx scripts/set-version.ts",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css,md,json}\"",
"lint": "eslint src --max-warnings 0",
"lint:fix": "eslint src --fix",
"lint:rust": "cd src-tauri && cargo clippy",
"format:rust": "cd src-tauri && cargo fmt --",
"format:rust:check": "cd src-tauri && cargo fmt -- --check",
"typecheck": "tsc --noEmit",
"check:all": "npm run format:check && npm run lint && npm run typecheck && npm run format:rust:check && npm run lint:rust",
"fix:all": "npm run format && npm run lint:fix && npm run format:rust",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"lint:all": "npm run lint && npm run lint:rust",
"check": "npm run lint:all && npm run build",
"prepare": "husky",
"test": "vitest",
"test:unit": "vitest",
"test:e2e": "playwright test",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.1",
"@tauri-apps/plugin-updater": "^2.9.0",
"@xterm/addon-fit": "^0.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.4.0",
"xterm": "^5.3.0"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^2.5.1",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.51.0",
"@tailwindcss/postcss": "^4.1.18",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.6.5",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^25.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.0.4",
"vitest": "^2.1.8"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{css,md,json}": [
"prettier --write"
],
"src-tauri/**/*.rs": [
"sh -c 'cd src-tauri && cargo fmt --'"
]
}
}