-
-
Notifications
You must be signed in to change notification settings - Fork 656
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "melonjs-monorepo",
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">= 20"
},
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo build && eslint && biome check && turbo test:types",
"test": "turbo build && vitest --config packages/melonjs/vitest.config.ts",
"doc": "pnpm -F melonjs doc",
"publish-melonjs": "pnpm lint && pnpm biome check && pnpm publish --filter melonjs && pnpm tsx scripts/release.ts melonjs",
"publish-debug-plugin": "pnpm lint && pnpm biome check && pnpm publish --filter debug-plugin && pnpm tsx scripts/release.ts debug-plugin"
},
"packageManager": "pnpm@9.5.0",
"dependencies": {
"@biomejs/biome": "2.3.14",
"@eslint/js": "^9.27.0",
"@types/node": "^25.4.0",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"eslint": "^9.27.0",
"eslint-plugin-jsdoc": "^62.5.3",
"globals": "^17.3.0",
"lefthook": "^2.1.0",
"tsconfig": "workspace:^",
"tsx": "^4.21.0",
"turbo": "^2.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"devDependencies": {
"eslint-plugin-react-refresh": "^0.5.0",
"playwright": "^1.58.2"
},
"pnpm": {
"overrides": {
"minimatch@<4.0.0": "3.1.4",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"ajv@<6.14.0": "6.14.0",
"rollup@>=4.0.0 <4.59.0": "4.59.0"
}
}
}