-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "color-perf",
"types": "module",
"version": "0.0.0",
"author": "BeeeQueue <adam@haglund.dev>",
"license": "MIT",
"private": true,
"packageManager": "pnpm@9.10.0",
"engines": {
"node": "^22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,json5,yaml,yml,css,scss,md}": [
"oxlint -D pedantic -D correctness -A no-undef -A no-unresolved",
"prettier --write"
]
},
"scripts": {
"bench": "vitest bench",
"dev": "tsup --watch",
"lint": "oxlint -D pedantic -D correctness -A no-undef -A no-unresolved",
"typecheck": "tsc --noEmit --project tsconfig.json",
"prepare": "simple-git-hooks"
},
"dependencies": {
"ansi-colors": "4.1.3",
"ansis": "3.3.2",
"chalk": "5.3.0",
"colorette": "2.0.20",
"picocolors": "1.1.0"
},
"devDependencies": {
"@tsconfig/node22": "22.0.0",
"@tsconfig/strictest": "2.0.5",
"@types/node": "22.5.4",
"dotenv": "16.4.5",
"lint-staged": "15.2.10",
"oxlint": "0.9.3",
"prettier": "3.3.3",
"simple-git-hooks": "2.11.1",
"ts-dedent": "2.2.0",
"typescript": "5.6.2",
"vitest": "2.0.5"
}
}