-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 926 Bytes
/
package.json
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
{
"name": "@zephraph/solitaire",
"version": "1.1.0",
"description": "Play solitaire in the terminal. `npx @zephraph/solitaire`",
"main": "index.js",
"repository": "https://github.com/zephraph/solitaire",
"author": "Justin Bennett <[email protected]>",
"license": "MIT",
"bin": "index.js",
"scripts": {
"start": "node game",
"build": "swc src -d game",
"dev": "yarn build -w",
"test": "echo 'no tests'",
"postinstall": "patch-package",
"prepack": "yarn build",
"release": "npx auto shipit"
},
"devDependencies": {
"@swc/cli": "^0.1.49",
"@swc/core": "^1.2.83",
"@types/react": "^17.0.19",
"chokidar": "^3.5.2"
},
"dependencies": {
"ink": "^3.0.9",
"lodash": "^4.17.21",
"patch-package": "^6.2.2",
"react": "^17.0.2",
"recoil": "^0.0.10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}