generated from BiscuitTin/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.58 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": "biscuit-tin-eslint-config",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"author": "Biscuit Tin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BiscuitTin/eslint-config.git"
},
"engines": {
"node": ">=22.12.0 <23",
"bun": ">=999.0.0",
"npm": ">=999.0.0",
"yarn": ">=999.0.0"
},
"scripts": {
"build": "jiek build --noMin --filter @bttin/*",
"test": "vitest --run --logHeapUsage",
"coverage": "vitest run --coverage",
"typegen": "tsx scripts/typegen.ts",
"lint": "eslint --cache --flag unstable_ts_config .",
"prepare": "husky"
},
"devDependencies": {
"@bttin/eslint-config": "workspace:^",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@types/lint-staged": "^13.3.0",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"dprint": "^0.47.6",
"eslint": "^9.17.0",
"eslint-typegen": "^0.3.2",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"jiek": "^2.2.7",
"jiti": "^2.4.2",
"lint-staged": "^15.2.11",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"deep-equal": "npm:@nolyfill/deep-equal@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"is-generator-function": "npm:@nolyfill/is-generator-function@^1",
"safe-buffer": "npm:@nolyfill/safe-buffer@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1"
}
}
}