-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.64 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
{
"name": "games",
"type": "module",
"version": "8.0.0",
"description": "A collection of score sheets for tabletop games",
"author": {
"name": "Connor Bär, connor-baer",
"email": "github@connorbaer.com"
},
"homepage": "https://github.com/connor-baer/games",
"private": true,
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/connor-baer/games.git"
},
"keywords": [
"connor",
"baer",
"developer",
"website"
],
"bugs": {
"url": "https://github.com/connor-baer/games/issues"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"sync": "astro sync",
"prebuild": "npm run check",
"build": "astro build --remote",
"preview": "astro preview",
"prelint": "npm run sync",
"lint": "biome check --diagnostic-level=error && eslint . --quiet --concurrency=auto",
"lint:fix": "biome check --write --diagnostic-level=error && eslint . --fix --quiet --concurrency=auto",
"lint:ci": "biome ci --diagnostic-level=error && eslint . --quiet --concurrency=auto",
"lint:css": "stylelint '**/*.css' --quiet",
"test": "playwright test"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.2.4",
"@astrojs/svelte": "^7.0.10",
"@vite-pwa/astro": "^1.0.1",
"astro": "^5.15.9",
"browserslist": "^4.28.8",
"ky": "^1.8.1",
"lightningcss": "^1.29.3",
"svelte": "^5.55.7",
"svelte-persisted-store": "^0.12.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@sumup-oss/foundry": "^9.0.6",
"@types/node": "^25.5.2"
}
}