-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 2.41 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "typing-game-cli",
"description": "Command line game to practice your typing speed by competing against typer-robot or against your best result",
"version": "5.0.0",
"homepage": "https://github.com/akgondber/typing-game-cli",
"repository": "akgondber/typing-game-cli",
"author": "Rushan Alyautdinov <[email protected]>",
"license": "MIT",
"bin": {
"typing-game-cli": "dist/cli.js",
"typing-game": "dist/cli.js",
"tgc": "dist/cli.js",
"tpngm": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "babel --out-dir=dist source --copy-files",
"dev": "babel --out-dir=dist --watch source",
"test": "prettier --check . && xo && loadr -- ava",
"justtest": "ava --serial",
"lint": "xo",
"go": "node dist/cli.js",
"prettify": "prettier . --write",
"xofix": "xo --fix",
"pretcheck": "prettier --check ."
},
"files": [
"dist"
],
"dependencies": {
"@inkjs/ui": "^1.0.0",
"chalk": "^5.3.0",
"date-fns": "^3.6.0",
"fdir": "^6.1.1",
"ink": "^4.2.0",
"ink-gradient": "^3.0.0",
"ink-text-input-2": "^1.0.0",
"just-compose": "^2.3.0",
"just-filter-object": "^3.2.0",
"just-pick": "^4.2.0",
"just-random": "^3.2.0",
"just-sort-by": "^3.2.0",
"meow": "^13.2.0",
"nanoid": "^5.0.6",
"react": "^18.2.0",
"valtio": "^1.13.1"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/preset-react": "^7.25.9",
"ava": "^6.1.2",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"import-jsx": "^5.0.0",
"ink-testing-library": "^3.0.0",
"loadr": "^0.1.1",
"prettier": "^3.2.5",
"xo": "^0.58.0"
},
"ava": {
"environmentVariables": {
"NODE_NO_WARNINGS": "1"
},
"nodeArguments": [
"--loader=import-jsx"
],
"timeout": "20s"
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off",
"unicorn/filename-case": "off",
"unicorn/prefer-switch": "off"
}
},
"prettier": {
"useTabs": true,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"bracketSpacing": false,
"arrowParens": "avoid",
"trailingComma": "all"
},
"babel": {
"presets": [
"@babel/preset-react"
]
},
"keywords": [
"challenge",
"cli",
"fun",
"game",
"keyboard",
"productivity",
"robot",
"speed",
"typer",
"typing",
"competition",
"typingpracrice",
"bestresult",
"terminalgame",
"cligame"
]
}