-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.43 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
{
"name": "sudoku-in-terminal",
"version": "1.2.1",
"description": "Sudoku game in terminal.",
"type": "module",
"main": "dist/index.js",
"bin": {
"sudoku": "bin/sudoku.mjs"
},
"repository": "mrozio13pl/sudoku-in-terminal",
"author": "mrozio13pl",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"files": [
"bin",
"dist"
],
"keywords": [
"sudoku",
"game",
"terminal",
"console",
"ink",
"react",
"cli"
],
"scripts": {
"build": "rollup -c",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"dev": "node scripts/dev.js",
"test": "vitest run --coverage",
"lint": "run-s lint:*",
"lint:publish": "publint",
"lint:eslint": "eslint .",
"release": "release-it",
"prepublishOnly": "run-s test build"
},
"dependencies": {
"has-flag": "^5.0.1",
"ink": "^5.0.1",
"ink-big-text": "^2.0.0",
"ink-spinner": "^5.0.0",
"is-unicode-supported": "^2.1.0",
"react": "~18.3.1",
"signal-exit": "^3.0.7",
"steno": "^4.0.2",
"strip-ansi": "^7.1.0",
"sudoku-gen": "^1.0.2",
"supports-color": "^9.4.0",
"terminal-size": "^4.0.0",
"tiny-update-notifier": "^2.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@mrozio/eslint-config": "^1.0.4",
"@parcel/watcher": "^2.4.1",
"@release-it/conventional-changelog": "^8.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^5.0.7",
"@tsconfig/node18": "^18.2.4",
"@types/eslint": "^8.56.12",
"@types/node": "^20",
"@types/react": "^18.3.12",
"@types/signal-exit": "^3.0.4",
"@vitest/coverage-v8": "^2.1.4",
"@zkochan/rimraf": "^3.0.2",
"ansi-styles": "^6.2.1",
"cli-spinners": "3.0.0",
"core-js": "^3",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "^8",
"eslint-plugin-react-hooks": "^4.6.2",
"npm-run-all2": "^7.0.1",
"publint": "^0.2.12",
"release-it": "^17.10.0",
"rollup": "^4.24.3",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-size": "^0.3.1",
"rollup-plugin-typescript-paths": "^1.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"signal-exit-v4": "npm:signal-exit@^4",
"std-env": "^3.7.0",
"tree-kill": "^1.2.2",
"tsx": "^4.19.2",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4",
"which": "^5.0.0"
}
}