-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "NeStA-Picker",
"version": "1.0.0",
"description": "A CLI tool for Completionists to pick the next Steam achievement to attempt from their current library.",
"main": "src/cli/index.ts",
"type": "module",
"scripts": {
"nesta": "NODE_ENV=development tsx src/cli/index.ts",
"build": "tsc",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest"
},
"keywords": [
"nesta",
"picker",
"steam",
"achievement",
"cli",
"completionist"
],
"author": {
"name": "Imamuzzaki Abu Salam",
"email": "imamuzzaki@gmail.com",
"url": "https://github.com/ImBIOS"
},
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"dependencies": {
"better-sqlite3": "^12.2.0",
"ink": "^6.3.1",
"kleur": "^4.1.5",
"playwright": "^1.55.0",
"react": "^19.0.0",
"sury": "11.0.0-alpha.3",
"typia": "^9.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@ryoppippi/unplugin-typia": "^2.6.5",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.5.2",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^9.36.0",
"eslint-plugin-react": "^7.37.5",
"ink-testing-library": "^4.0.0",
"prettier": "^3.6.2",
"ts-patch": "^3.3.0",
"tsx": "^4.19.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"vitest": {
"setupFiles": [
"./tests/setup.ts"
]
}
}