-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.87 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
{
"name": "tiernote",
"private": true,
"version": "0.2.4",
"description": "A local-first workspace agent with tier-based organization and AI assistance.",
"author": "TierNote Team",
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc && vite build",
"video-runtime:prepare": "node scripts/prepare-video-runtime.mjs",
"catalog:build": "node scripts/build-local-catalog.mjs",
"library:check": "node scripts/check-bilingual-library.mjs",
"preview": "vite preview",
"release:check": "node scripts/check-release-version.mjs",
"release:preflight": "npm run video-runtime:prepare && npm run release:check && npm run typecheck && npm test && npm run library:check && npm run build && cargo fmt --manifest-path src-tauri/Cargo.toml -- --check && cargo clippy --manifest-path src-tauri/Cargo.toml --locked --all-targets -- -D warnings && cargo test --manifest-path src-tauri/Cargo.toml --locked",
"test": "node --test tests/*.test.mjs",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.2",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"codemirror": "^6.0.2",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"qrcode": "^1.5.4",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@tauri-apps/cli": "^2.8.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/qrcode": "^1.5.5",
"@vitejs/plugin-react": "^4.3.4",
"smol-toml": "^1.8.0",
"typescript": "^5.7.2",
"vite": "^6.0.7"
}
}