-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "@zephraph/solitaire",
"version": "1.1.0",
"description": "Play solitaire in the terminal. `npx @zephraph/solitaire`",
"type": "module",
"main": "index.js",
"repository": "https://github.com/zephraph/solitaire",
"author": "Justin Bennett <oss@just-be.dev>",
"license": "MIT",
"bin": "index.js",
"scripts": {
"start": "bun game",
"build": "tsc",
"dev": "bun --watch game",
"test": "echo 'no tests'",
"format": "biome format --write .",
"lint": "biome check --write .",
"prepack": "bun build",
"release": "bunx auto shipit"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/react": "^19.1.13",
"chokidar": "^3.5.2",
"typescript": "^5.9.2"
},
"dependencies": {
"@opentui/core": "^0.1.24",
"@opentui/react": "^0.1.24",
"es-toolkit": "^1.39.10",
"jotai": "^2.14.0",
"patch-package": "^6.2.2",
"react": "^19.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}