-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.68 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
{
"name": "jovianmoon",
"version": "0.1.5",
"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",
"test": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"deploy:party": "./deploy.sh",
"flush": "bash -c 'source .env 2>/dev/null; PARTYKIT_DOMAIN=${PARTYKIT_DOMAIN:-party.jovianmoon.io}; curl -sX POST https://$PARTYKIT_DOMAIN/parties/main/space/flush && echo; curl -sX POST https://$PARTYKIT_DOMAIN/parties/main/playground-tank/flush && echo'",
"docker:build": "docker build -t jovianmoon .",
"docker:run": "docker run -p 3000:3000 jovianmoon",
"docker:dev": "docker build -t jovianmoon . && docker run -p 3000:3000 jovianmoon"
},
"devDependencies": {
"@atproto/api": "^0.19.5",
"@jsdevtools/rehype-toc": "^3.0.2",
"@sendgrid/mail": "^8.1.6",
"@shikijs/rehype": "^4.0.2",
"@shikijs/transformers": "^4.0.2",
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "7.0.0",
"@types/eslint": "^9.6.1",
"@types/three": "^0.183.1",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"dayjs": "^1.11.20",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.16.0",
"gray-matter": "^4.0.3",
"mdsvex": "^0.12.7",
"partykit": "0.0.115",
"partysocket": "1.1.16",
"phosphor-svelte": "^3.1.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-code-titles": "^1.2.1",
"rehype-external-links": "^3.0.0",
"rehype-highlight": "^7.0.2",
"rehype-highlight-code-lines": "^1.2.2",
"rehype-parse": "^9.0.1",
"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",
"remark-smartypants": "^3.0.2",
"sk-seo": "^0.5.4",
"svelte": "5.55.0",
"svelte-check": "^4.4.5",
"svelte-confetti": "^2.3.2",
"svelte-turnstile": "^0.11.0",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"unist-util-visit": "^5.1.0",
"valibot": "^1.3.1",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild"
]
},
"type": "module",
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"@threlte/core": "^8.5.2",
"@threlte/extras": "^9.13.0",
"svelte-component-to-image": "^2.0.5",
"three": "^0.183.2",
"unified": "^11.0.5"
}
}