-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.69 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
{
"name": "typp-workspace",
"type": "module",
"packageManager": "[email protected]",
"description": "A workspace for typp project.",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"lint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ ./ --max-warnings=0",
"test": "pnpm --recursive run test",
"coverage": "pnpm --recursive run coverage",
"coverage:badge": "pnpm --recursive run coverage:badge",
"postinstall": "dprint editor-info"
},
"devDependencies": {
"@antfu/eslint-config": "^3.3.2",
"@types/node": "^18.19.45",
"@vitest/coverage-istanbul": "^1.1.0",
"dprint": "^0.47.2",
"esbuild-register": "^3.6.0",
"eslint": "^9.9.1",
"jiek": "^1.0.13",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"unbox-primitive": "npm:@nolyfill/unbox-primitive@latest"
}
}
}