-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 6.16 KB
/
package.json
File metadata and controls
157 lines (157 loc) · 6.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "astro-editor",
"private": true,
"version": "1.0.12",
"type": "module",
"author": "Danny Smith",
"description": "Astro Editor is a native macOS application designed specifically for editing Astro content collections. It provides a distraction-free writing environment with seamless frontmatter editing capabilities. It also provides a component builder for MDX files, and a number of writing modes to help you write.",
"homepage": "https://github.com/dannysmith/astro-editor",
"copyright": "Copyright © 2025 Danny Smith. All rights reserved.",
"repository": {
"type": "git",
"url": "https://github.com/dannysmith/astro-editor.git"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"ast:lint": "ast-grep scan",
"ast:fix": "ast-grep scan --update-all",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,css,md}\"",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"rust:fmt": "cd src-tauri && cargo fmt",
"rust:fmt:check": "cd src-tauri && cargo fmt --check",
"rust:clippy": "cd src-tauri && cargo clippy -- -D warnings",
"rust:clippy:fix": "cd src-tauri && cargo clippy --fix --allow-dirty",
"rust:test": "cd src-tauri && cargo test",
"tauri": "tauri",
"tauri:dev": "pnpm run tauri dev",
"tauri:build": "pnpm run tauri build",
"tauri:check": "pnpm run typecheck && pnpm run rust:clippy",
"test:all": "pnpm run test:run && pnpm run rust:test",
"check:all": "pnpm run typecheck && pnpm run lint && pnpm run ast:lint && pnpm run format:check && pnpm run rust:fmt:check && pnpm run rust:clippy && pnpm run test:run && pnpm run rust:test",
"fix:all": "pnpm run lint:fix && pnpm run ast:fix && pnpm run format && pnpm run rust:fmt && pnpm run rust:clippy:fix",
"reset:testdata": "rm -rf temp-dummy-astro-project && cp -r test/dummy-astro-project temp-dummy-astro-project",
"prepare-release": "node scripts/prepare-release.js",
"task:complete": "node scripts/complete-task.js",
"task:rename-done": "node scripts/complete-task.js --rename-existing",
"knip": "knip",
"jscpd": "jscpd src src-tauri/src",
"stats": "cd telemetry-worker && pnpm run stats && cd .."
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.3",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"@hookform/resolvers": "^5.2.2",
"@lezer/highlight": "^1.2.3",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.99.0",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@tauri-apps/plugin-window-state": "^2.4.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"compromise": "^14.15.0",
"date-fns": "^4.1.0",
"lucide-react": "^1.8.0",
"marked": "^18.0.2",
"next-themes": "^0.4.6",
"react": "^19.2.5",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.5",
"react-hook-form": "^7.72.1",
"react-hotkeys-hook": "^5.2.4",
"react-resizable-panels": "^4.10.0",
"react-textarea-autosize": "^8.5.9",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@ast-grep/cli": "^0.42.1",
"@eslint/js": "^10.0.1",
"@rolldown/plugin-babel": "^0.2.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"autoprefixer": "^10.5.0",
"babel-plugin-react-compiler": "~1.0.0",
"baseline-browser-mapping": "^2.10.20",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jscpd": "^4.0.9",
"jsdom": "^29.0.2",
"knip": "^6.4.1",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"rollup-plugin-visualizer": "^7.0.1",
"semantic-release": "^25.0.3",
"tailwindcss": "^4.2.2",
"terser": "^5.46.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"pnpm": {
"overrides": {
"@lezer/common": "^1.5.0"
}
}
}