-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "@hp4k1h5/terminordle",
"version": "0.1.14",
"license": "MIT",
"scripts": {
"help": "yarn dev --help",
"dev": "yarn build && node dist/src/cli/index.js",
"play": "yarn dev play",
"join": "yarn dev join",
"serve": "yarn dev serve",
"test": "mocha -r ts-node/register 'tests/**/*.*'",
"build": "rm -rf dist/ && tsc && cp -r dist_data dist",
"pub": "yarn build && npm publish --access public"
},
"bin": {
"terminordle": "dist/src/cli/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/HP4k1h5/terminordle.git"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/chalk": "^2.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"chai": "^4.3.7",
"eslint": "^8.31.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"files": [
"src/**/*",
"dist/**/*.*"
],
"keywords": [
"wordle",
"multiplayer",
"game",
"typescript",
"websockets",
"terminal",
"cli",
"tui"
]
}