-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
68 lines (68 loc) · 2.17 KB
/
package.json
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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview:node": "node ./dist/server/entry.mjs",
"preview:deno": "deno run --allow-net --allow-read --allow-env ./dist/server/entry.mjs",
"preview:cloudflare": "wrangler pages dev ./dist",
"preview:vercel": "vercel deploy --prebuilt",
"preview:netlify": "netlify deploy --build",
"astro": "astro"
},
"dependencies": {
"@codemirror/commands": "^6.3.3",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.4",
"@codemirror/language": "^6.10.1",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/state": "^6.4.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.23.1",
"@ffmpeg.wasm/core-mt": "^0.12.0",
"@ffmpeg.wasm/main": "^0.12.0",
"@fontsource-variable/inter": "^5.0.16",
"@fontsource-variable/inter-tight": "^5.0.19",
"@uiw/codemirror-extensions-hyper-link": "^4.21.21",
"astro-auto-adapter": "^2.1.0",
"codemirror": "^6.0.1",
"fluent-svelte": "^1.6.0",
"m3u-parser-generator": "^1.6.0",
"m3u8-parser": "^7.1.0",
"svelte": "^4.2.10",
"svelte-french-toast": "1.2.0",
"tailwindcss": "^3.4.1",
"unplugin-icons": "^0.18.5",
"urlpattern-polyfill": "^10.0.0",
"workbox-window": "^7.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@astrojs/cloudflare": "9.0.0",
"@astrojs/deno": "5.0.1",
"@astrojs/netlify": "5.0.1",
"@astrojs/node": "8.2.0",
"@astrojs/sitemap": "^3.0.5",
"@astrojs/svelte": "^5.0.3",
"@astrojs/tailwind": "^5.1.0",
"@astrojs/vercel": "7.1.1",
"@fastify/middie": "^8.3.0",
"@fastify/static": "^7.0.0",
"@iconify-json/file-icons": "^1.1.8",
"@iconify-json/fluent": "^1.1.47",
"@iconify-json/fluent-emoji": "^1.1.18",
"@iconify-json/mdi": "^1.1.64",
"astro": "4.3.3",
"astrojs-service-worker": "^2.0.0",
"esno": "^4.0.0",
"fastify": "^4.26.0",
"sass": "^1.70.0",
"workbox-core": "^7.0.0",
"workbox-range-requests": "^7.0.0"
}
}