-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.17 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
{
"name": "radicle-explorer",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "vite",
"start:httpd": "cargo run -p radicle-httpd --release -- --listen 127.0.0.1:8080",
"serve": "vite preview",
"build": "vite build",
"check": "scripts/check",
"check:radicle-httpd": "cargo clippy --all --tests && cargo fmt --all --check",
"format": "npx prettier '**/*.@(ts|js|svelte|json|css|html|yml)' --write",
"test:unit": "TZ='UTC' vitest run",
"test:e2e": "NODE_CONFIG_ENV='test' TZ='UTC' playwright test",
"test:e2e:local": "scripts/compile-local-httpd && USE_LOCAL_HTTPD=true NODE_CONFIG_ENV='test' TZ='UTC' playwright test",
"test:http-client:unit": "NODE_CONFIG_ENV='test' TZ='UTC' vitest run --config http-client/vite.config.ts --reporter verbose",
"test:http-client:unit:local": "scripts/compile-local-httpd && USE_LOCAL_HTTPD=true NODE_CONFIG_ENV='test' TZ='UTC' vitest run --config http-client/vite.config.ts --reporter verbose",
"test:radicle-httpd": "cargo test --all-features",
"deploy": "rimraf build && npm clean-install && NODE_CONFIG_ENV='radicle.network' npm run build && scripts/inject-plausible && npx wrangler deploy",
"deploy:open-graph": "cd workers/open-graph && npx wrangler deploy",
"start:open-graph": "cd workers/open-graph && npx wrangler dev"
},
"type": "module",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@tsconfig/svelte": "^5.0.8",
"@types/js-yaml": "^4.0.9",
"@types/katex": "^0.16.8",
"@types/linkify-it": "^5.0.0",
"@types/lodash": "^4.17.24",
"@types/md5": "^2.3.6",
"@types/node": "^24",
"@types/wait-on": "^5.3.4",
"@typescript-eslint/parser": "^8.64.0",
"chalk": "^5.6.2",
"config": "^4.4.2",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.20.0",
"execa": "^9.6.1",
"get-port": "^7.2.0",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"mdsvex": "^0.12.7",
"prettier": "^3.9.5",
"prettier-plugin-svelte": "^4.1.1",
"rehype-slug": "^6.0.0",
"remark-unwrap-images": "^4.0.1",
"rimraf": "^6.1.3",
"shiki": "^4.3.1",
"svelte-check": "^4.7.2",
"svelte-eslint-parser": "^1.8.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.4",
"vitest": "^4.1.10",
"wait-on": "^9.0.10"
},
"dependencies": {
"@twemoji/svg": "^15.0.0",
"@wooorm/starry-night": "^3.10.0",
"async-mutex": "^0.5.0",
"baconjs": "^3.0.23",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"compare-versions": "^6.1.1",
"dompurify": "^3.4.12",
"fuzzysort": "^3.1.0",
"hast-util-to-dom": "^4.0.1",
"hast-util-to-html": "^9.0.5",
"js-yaml": "^5.2.1",
"linkify-it": "^6.0.0",
"lodash": "^4.18.1",
"lru-cache": "^11.5.2",
"marked": "^18.0.6",
"marked-emoji": "^2.0.3",
"marked-footnote": "^1.4.0",
"marked-katex-extension": "^5.1.10",
"marked-linkify-it": "^3.1.15",
"md5": "^2.3.0",
"mermaid": "^11.16.0",
"svelte": "^5.56.5",
"twemoji": "^14.0.2",
"zod": "^4.4.3"
}
}