-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "untidy",
"private": true,
"type": "module",
"license": "Apache-2.0",
"scripts": {
"dev": "tsx playground.ts",
"format": "prettier --cache -w .",
"lint": "eslint . --cache --cache-location \"./node_modules/.cache/eslint/\"",
"clean": "rm -rf node_modules",
"test": "vitest",
"test:coverage": "vitest --coverage",
"build": "pnpm --filter mobygames build",
"build:docs": "pnpm --filter mobygames-docs build",
"publish-packages": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.3",
"@eslint/js": "^9.26.0",
"@vitest/coverage-v8": "^3.1.3",
"@vitest/eslint-plugin": "^1.1.44",
"eslint": "^9.26.0",
"eslint-plugin-jsdoc": "^50.6.11",
"eslint-plugin-n": "^17.18.0",
"eslint-plugin-promise": "^7.2.1",
"msw": "^2.8.2",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vitest": "^3.1.3"
},
"engines": {
"node": "^20.11.0 || ^22.0.0",
"pnpm": ">=8"
},
"pnpm": {
"overrides": {
"esbuild": "0.25.4"
},
"onlyBuiltDependencies": [
"esbuild",
"msw",
"sharp"
]
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}