-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
114 lines (114 loc) · 3.28 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "weird",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . --log-level warn",
"format": "prettier --write . --log-level warn",
"test": "vitest"
},
"devDependencies": {
"@atproto/api": "^0.13.18",
"@atproto/did": "^0.1.3",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-markdown": "^6.3.1",
"@codemirror/language": "^6.10.4",
"@dicebear/collection": "^9.2.2",
"@dicebear/core": "^9.2.2",
"@floating-ui/dom": "^1.6.12",
"@iconify/svelte": "^4.0.2",
"@lezer/highlight": "^1.2.1",
"@polar-sh/checkout": "^0.1.6",
"@polar-sh/sdk": "^0.18.0",
"@rodrigodagostino/svelte-sortable-list": "^0.10.8",
"@skeletonlabs/skeleton": "^2.10.3",
"@skeletonlabs/tw-plugin": "^0.4.0",
"@sveltejs/adapter-node": "^5.2.9",
"@sveltejs/kit": "^2.8.5",
"@sveltejs/vite-plugin-svelte": "4.0.0-next.6",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/canvas-confetti": "^1.6.4",
"@types/cookie": "^0.6.0",
"@types/dns-packet": "^5.6.5",
"@types/eslint": "^8.56.12",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.8",
"@types/nodemailer": "^6.4.17",
"@types/sanitize-html": "^2.13.0",
"@types/underscore": "^1.13.0",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"base64-js": "^1.5.1",
"canvas-confetti": "^1.9.3",
"codemirror": "^6.0.1",
"cookie": "^0.6.0",
"cron": "^3.3.1",
"date-fns": "^3.6.0",
"dinodns": "^0.0.9",
"discord.js": "^14.16.3",
"dns-packet": "^5.6.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.0",
"fast-xml-parser": "^4.5.0",
"leaf-proto": "workspace:*",
"linkedom": "^0.18.5",
"linktree-parser": "^1.5.0",
"marked": "^14.1.4",
"namedrop-js": "^0.5.0",
"nodemailer": "^6.9.16",
"oauth-pkce": "^0.0.7",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"prosemirror-commands": "^1.6.2",
"prosemirror-example-setup": "^1.2.3",
"prosemirror-history": "^1.4.1",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-markdown": "^1.13.1",
"prosemirror-menu": "^1.2.4",
"prosemirror-model": "^1.23.0",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.37.0",
"proxy-agent": "^6.4.0",
"redis": "^4.7.0",
"sanitize-html": "^2.13.1",
"slugify": "^1.6.6",
"svelte": "^5.0.0",
"svelte-check": "^3.8.6",
"tailwindcss": "^3.4.15",
"timeago.js": "^4.0.2",
"typescript": "^5.7.2",
"underscore": "^1.13.7",
"undici": "^6.21.0",
"vite": "^5.4.11",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^2.1.6",
"ws": "^8.18.0",
"zod": "^3.23.8"
},
"dependencies": {
"base64-js": "^1.5.1",
"loro-crdt": "^1.3.0",
"loro-prosemirror": "^0.2.1",
"sharp": "^0.33.5",
"zlib-sync": "^0.1.9"
},
"type": "module",
"pnpm": {
"patchedDependencies": {
"@discordjs/util": "patches/@discordjs__util.patch"
}
}
}