forked from r1n7aro/Locus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.36 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
{
"name": "locus",
"private": true,
"license": "GPL-3.0-or-later",
"version": "0.2.11",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "vue-tsc --noEmit -p tsconfig.app.json",
"typecheck:test": "vue-tsc --noEmit -p tsconfig.test.json",
"release:generate": "cd docs && bun run release:generate",
"release:verify-version": "bun run scripts/verify-release-version.mjs",
"release": "bun run release:generate && bun run release:verify-version && bun run docs:validate",
"build": "bun run typecheck && vite build",
"build:tauri": "bun run build:tauri:with_embed_python_git",
"build:tauri:with_embed_python_git": "bun run unity:bundle-roslyn && bun run python:bundle && bun run git:bundle && bun run licenses:bundle && bun run build",
"build:tauri:without_embed_python_git": "bun run unity:bundle-roslyn && bun run licenses:bundle && bun run build",
"release:installers": "bun run scripts/build-release-installers.mjs",
"unity:bundle-roslyn": "bun run scripts/build-locus-roslyn-bundle.mjs",
"python:bundle": "bun run scripts/prepare-managed-python.mjs",
"git:bundle": "bun run scripts/prepare-managed-git.mjs",
"licenses:bundle": "bun run scripts/generate-third-party-bundle.mjs",
"preview": "vite preview",
"tauri": "bun run scripts/run-tauri.mjs",
"docs:dev": "cd docs && bun run dev",
"docs:validate": "cd docs && bun run validate",
"docs:broken-links": "cd docs && bun run broken-links",
"docs:build": "cd docs && bun run build",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@types/three": "^0.183.1",
"@types/turndown": "^5.0.6",
"ag-psd": "^30.1.0",
"highlight.js": "^11.11.1",
"lucide": "^1.11.0",
"marked": "^17.0.4",
"marked-highlight": "^2.2.3",
"pinia": "^3.0.4",
"three": "^0.183.2",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2",
"vditor": "^3.11.2",
"vue": "^3.5.13"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vite-plugin-static-copy": "^4.0.1",
"vitest": "^4.1.2",
"vue-tsc": "^2.1.10"
}
}