forked from fullsend-ai/fullsend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.97 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
{
"name": "fullsend-web",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "concurrently -k -n worker,vite -c blue,green \"npm run dev:worker\" \"vite\"",
"dev:worker": "cross-env CLOUDFLARE_INCLUDE_PROCESS_ENV=true wrangler dev --config cloudflare_site/wrangler.toml --port 8787 --ip 127.0.0.1",
"dev:debug": "concurrently -k -n worker,vite -c blue,green \"cross-env CLOUDFLARE_INCLUDE_PROCESS_ENV=true wrangler dev --config cloudflare_site/wrangler.toml --port 8787 --ip 127.0.0.1 --log-level debug --var DEBUG_LOG:1\" \"cross-env ADMIN_DEBUG_PROXY=1 vite -d --clearScreen false\"",
"dev:vite": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run --config vite.config.ts && vitest run --config cloudflare_site/worker/vitest.config.mts",
"check": "svelte-check --tsconfig web/admin/tsconfig.json && svelte-check --tsconfig web/docs/tsconfig.json"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.14.7",
"@cloudflare/workers-types": "^4.20250420.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tsconfig/svelte": "^5.0.0",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^22.0.0",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"jsdom": "^25.0.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"toml-eslint-parser": "^1.0.3",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vitest": "^4.1.4",
"wrangler": "^4.36.0"
},
"dependencies": {
"@octokit/rest": "^21.1.1",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"mdast-util-to-string": "^4.0.0",
"mermaid": "^11.14.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"svelte-spa-router": "^4.0.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"yaml": "^2.4.2"
}
}