-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "playground",
"version": "1.0.0",
"license": "MIT",
"author": "Saad Khan",
"type": "module",
"scripts": {
"lint": "eslint . --max-warnings=0 --fix && pnpm format && pnpm spellcheck",
"format": "prettier --write --log-level silent .",
"test": "vitest watch",
"test-ui": "vitest --ui",
"tsc": "tsc",
"typecheck": "vitest typecheck",
"wordle": "tsx ./scripts/wordle/wordle.ts",
"kebab-rename": "tsx ./scripts/recursive-rename/recursive-rename.ts",
"md-csv": "tsx ./scripts/md-links-to-csv/script.ts",
"spellcheck": "cspell . --quiet",
"diag": "tsc --extendedDiagnostics",
"trace": "tsc --generateTrace ./trace && npx @typescript/analyze-trace trace"
},
"dependencies": {
"chalk": "^5.4.1",
"dayjs": "^1.11.13",
"minimist-lite": "^2.2.1",
"prompt": "^1.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@type-challenges/utils": "^0.1.1",
"@types/eslint": "^8.56.11",
"@types/node": "^22.13.1",
"@types/prompt": "^1.1.9",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@typescript/analyze-trace": "^0.10.1",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"cspell": "^8.17.3",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vitest": "0.4.1",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@10.2.1"
}