-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.58 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
67
68
69
70
71
72
73
{
"name": "@engelde/tetris-cli",
"version": "1.0.0",
"description": "A CLI recreation of Tetris — right in your terminal",
"type": "module",
"main": "dist/index.js",
"bin": {
"tetris": "bin/tetris.js",
"tetris-cli": "bin/tetris.js"
},
"scripts": {
"start": "node bin/tetris.js",
"clean": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\"",
"build": "tsc",
"dev": "tsc && node bin/tetris.js",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "tsx --test test/*.test.ts",
"test:watch": "tsx --test --watch test/*.test.ts",
"prepare": "husky",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"tetris",
"cli",
"game",
"terminal",
"tetris-guideline",
"srs",
"multiplayer",
"retro",
"arcade"
],
"author": "David Engel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/engelde/tetris-cli.git"
},
"homepage": "https://github.com/engelde/tetris-cli#readme",
"bugs": {
"url": "https://github.com/engelde/tetris-cli/issues"
},
"files": [
"assets/",
"bin/",
"dist/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"chalk": "^5.6.2",
"ink": "^7.0.1",
"react": "^19.2.5"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/react": "^19.2.14",
"husky": "^9.1.7",
"ink-testing-library": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.8.0"
}
}