-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "musee",
"version": "1.0.0",
"private": true,
"description": "Self hosted gallery written in React + Astro. Ships minimal JS to the client.",
"license": "GNU GPLv3",
"author": "Ayaan Zaidi (hi@obviy.us)",
"repository": "git@github.com:obviyus/musee.git",
"type": "module",
"sideEffects": false,
"scripts": {
"dev": "bunx --bun astro dev",
"build": " bunx --bun astro build",
"check": "bunx --bun astro check",
"format": "oxfmt --check .oxfmtrc.json astro.config.mjs package.json public/site.webmanifest src tsconfig.json",
"format:write": "oxfmt --write .oxfmtrc.json astro.config.mjs package.json public/site.webmanifest src tsconfig.json",
"preview": "bunx --bun astro preview",
"astro": "bunx --bun astro"
},
"dependencies": {
"@tailwindcss/vite": "^4.2.1",
"astro": "6.0.4",
"exifreader": "^4.37.0",
"sharp": "^0.34.5",
"sqids": "^0.3.0",
"tailwindcss": "^4.2.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.7",
"@types/bun": "^1.3.10",
"oxfmt": "^0.40.0",
"typescript": "^5.9.3"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}