-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.54 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
{
"name": "codenest",
"type": "module",
"version": "1.1.1",
"private": true,
"packageManager": "pnpm@11.17.0+sha512.cca3cea332ad254bb84145f966d19f4879615210346fc92c79a047f23a0d7b3cca3c3792f0076ba1f1831d277efbcf0a9119b31a9a60eca7fb3d6231f331ef72",
"description": "A modern cross-platform desktop app to manage all your dev projects in one place. Built with Tauri + Vue 3.",
"author": "MidnightCrowing",
"license": "MIT",
"homepage": "https://github.com/MidnightCrowing/CodeNest",
"repository": {
"type": "git",
"url": "https://github.com/MidnightCrowing/CodeNest.git"
},
"bugs": "https://github.com/MidnightCrowing/CodeNest/issues",
"keywords": [
"project-manager",
"developer-tools",
"ide-integration",
"cross-platform",
"language-analysis",
"project-scanner"
],
"release": "https://github.com/MidnightCrowing/CodeNest/releases",
"readme": "https://github.com/MidnightCrowing/CodeNest/blob/main/README.md",
"scripts": {
"dev": "tauri dev",
"dev:vue": "vite",
"build": "tauri build --ci",
"build:exe": "tauri build --ci --no-bundle",
"build:vue": "vue-tsc --build && vite build",
"icon:build": "node scripts/build-icons.js",
"version:sync": "node scripts/sync-version.js",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm test:rust",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:rust": "cargo test --manifest-path src-tauri/Cargo.toml",
"typecheck": "vue-tsc",
"knip": "knip"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-log": "^2.9.0",
"fuse.js": "^7.5.0",
"pinia": "^4.0.3",
"reka-ui": "^2.10.3",
"vue": "^3.5.41",
"vue-i18n": "^11.4.8"
},
"devDependencies": {
"@antfu/eslint-config": "9.3.0",
"@iconify-json/lucide": "^1.2.123",
"@iconify/tools": "^5.0.12",
"@intlify/unplugin-vue-i18n": "^11.2.5",
"@tauri-apps/cli": "^2.11.4",
"@types/node": "^26.2.0",
"@vitejs/plugin-vue": "^6.0.8",
"eslint": "^10.8.1",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-simple-import-sort": "^14.0.0",
"knip": "^6.32.2",
"lint-staged": "^17.3.0",
"release-it": "^21.0.2",
"sass": "^1.102.0",
"simple-git-hooks": "^2.13.1",
"terser": "^5.50.0",
"typescript": "~6.0.3",
"unocss": "^66.7.5",
"unplugin-auto-import": "^21.1.0",
"vite": "^8.2.1",
"vitest": "^4.1.10",
"vue-tsc": "^3.3.10"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}