-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.06 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.06 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
{
"name": "radicle-desktop",
"private": true,
"version": "0.0.0",
"description": "",
"type": "module",
"scripts": {
"start": "vite",
"dev": "npx tauri dev -- --profile dev-without-assertions --features devtools",
"start:http": "cargo run --manifest-path ./crates/test-http-api/Cargo.toml",
"build": "vite build && scripts/copy-katex-assets && scripts/install-twemoji-assets",
"build:http": "cargo build --manifest-path ./crates/test-http-api/Cargo.toml",
"postinstall": "scripts/copy-katex-assets && scripts/install-twemoji-assets",
"preview": "vite preview",
"check": "scripts/check-js && scripts/check-rs",
"check-js": "scripts/check-js",
"check-rs": "scripts/check-rs",
"test:unit": "TZ='UTC' vitest run",
"test:e2e": "TZ='UTC' playwright test",
"format": "npx prettier . --write && npx eslint --fix .",
"generate-types": "cargo test --manifest-path ./crates/radicle-types/Cargo.toml",
"tauri": "npx tauri"
},
"engines": {
"node": "22.11.0"
},
"license": "GPL-3.0-only",
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.2",
"@tauri-apps/plugin-dialog": "^2.2.1",
"@tauri-apps/plugin-log": "^2.4.0",
"@tauri-apps/plugin-shell": "^2.2.1",
"@tauri-apps/plugin-window-state": "^2.2.2",
"hast-util-to-html": "^9.0.5",
"overlayscrollbars": "^2.11.4",
"overlayscrollbars-svelte": "^0.5.5",
"semver": "^7.7.2",
"zod": "^3.24.4"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@playwright/test": "^1.52.0",
"@radicle/gray-matter": "4.1.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tauri-apps/cli": "^2.5.0",
"@tsconfig/svelte": "^5.0.4",
"@types/hast": "^3.0.4",
"@types/lodash": "^4.17.16",
"@types/md5": "^2.3.5",
"@types/node": "^22.15.17",
"@types/semver": "^7.7.0",
"@types/wait-on": "^5.3.4",
"@wooorm/starry-night": "^3.7.0",
"baconjs": "^3.0.23",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"chalk": "^5.4.1",
"dompurify": "^3.2.5",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^3.5.1",
"execa": "^9.5.3",
"fuzzysort": "^3.1.0",
"get-port": "^7.1.0",
"globals": "^16.1.0",
"happy-dom": "^17.4.6",
"hast-util-to-dom": "^4.0.1",
"katex": "^0.16.22",
"keyux": "^0.11.1",
"lodash": "^4.17.21",
"lru-cache": "^11.1.0",
"marked": "^15.0.11",
"marked-emoji": "^2.0.0",
"marked-footnote": "^1.2.4",
"marked-katex-extension": "^5.1.4",
"marked-linkify-it": "^3.1.12",
"md5": "^2.3.0",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"svelte": "^5.28.2",
"svelte-check": "^4.1.7",
"svelte-eslint-parser": "^1.1.3",
"tslib": "^2.8.1",
"twemoji": "^14.0.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vite": "^6.3.5",
"vitest": "^3.1.3",
"vscode-oniguruma": "^2.0.1",
"wait-on": "^8.0.3"
}
}