-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 762 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 762 Bytes
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
{
"name": "dobble-algorithm",
"version": "1.0.0",
"description": "TypeScript implementation of the Dobble (Spot It!) card generation algorithm, plus an installable PWA for building a deck from your own photos",
"type": "module",
"main": "src/dobble.ts",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"demo": "tsx src/cli.ts",
"test": "tsc --noEmit"
},
"keywords": [
"dobble",
"spot-it",
"card-game",
"projective-plane",
"algorithm",
"combinatorics",
"pwa",
"photo-upload"
],
"author": "",
"license": "MIT",
"devDependencies": {
"tsx": "^4.23.1",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vite-plugin-pwa": "^1.3.0"
}
}