-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.72 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
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
{
"version": "0.1.4",
"name": "@khelo/tic-tac-toe",
"type": "module",
"bin": "./packages/cli/dist/index.js",
"author": {
"email": "49yash@gmmail.com",
"name": "Yash Shah",
"url": "https://github.com/yash49/"
},
"files": [
"packages/cli/dist",
"packages/server/dist",
"packages/client/dist",
"packages/cli/package.json",
"packages/server/package.json",
"packages/client/package.json",
"README.md"
],
"description": "Play Tic Tac Toe with Friends — or AI!",
"keywords": [
"tic-tac-toe",
"game",
"multiplayer",
"ai",
"artificial intelligence",
"single player game",
"multiplayer game",
"lan game",
"tic tac toe",
"tic tac toe game",
"multiplayer tic tac toe",
"tic tac toe ai",
"tic tac toe lan"
],
"scripts": {
"format": "prettier .",
"format:fix": "pnpm format --write",
"build:server": "cd packages/server && pnpm build && cd ../..",
"build:cli": "cd packages/cli && pnpm build && cd ../..",
"build:client": "cd packages/client && pnpm build && cd ../..",
"build": "pnpm build:server && pnpm build:cli && pnpm build:client",
"publish:beta": "pnpm build && npm publish --access public --tag beta",
"publish:stable": "pnpm build && npm publish --access public --tag latest"
},
"devDependencies": {
"prettier": "3.3.3",
"tsup": "^8.4.0",
"tsx": "^4.19.2"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"dgram": "^1.0.1",
"execa": "^9.5.2",
"tree-kill": "1.2.2",
"vite": "^5.4.10"
},
"repository": {
"type": "git",
"url": "https://github.com/yash49/khelo-tic-tac-toe"
},
"homepage": "https://github.com/yash49/khelo-tic-tac-toe",
"license": "MIT"
}