Skip to content

Commit f60d249

Browse files
committed
Add client code
1 parent b808d49 commit f60d249

File tree

7 files changed

+3914
-0
lines changed

7 files changed

+3914
-0
lines changed

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode", "gleam.gleam"],
3+
"unwantedRecommendations": []
4+
}

client/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/

client/astro.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { defineConfig } from "astro/config";
2+
3+
// https://astro.build/config
4+
export default defineConfig({});

client/package.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "safepup",
3+
"type": "module",
4+
"version": "0.0.1",
5+
"scripts": {
6+
"dev": "astro dev",
7+
"build": "astro check && astro build",
8+
"preview": "astro preview",
9+
"astro": "astro"
10+
},
11+
"dependencies": {
12+
"astro": "^5.13.5"
13+
},
14+
"pnpm": {
15+
"onlyBuiltDependencies": [
16+
"esbuild",
17+
"sharp"
18+
]
19+
},
20+
"packageManager": "[email protected]",
21+
"volta": {
22+
"node": "22.19.0"
23+
},
24+
"devDependencies": {
25+
"@astrojs/check": "^0.9.4",
26+
"typescript": "^5.9.2"
27+
}
28+
}

0 commit comments

Comments
 (0)