-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"name": "funkai",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test": "vitest run",
"typecheck": "turbo typecheck",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish",
"docs:dev": "zpress dev",
"docs:build": "zpress build",
"docs:serve": "zpress serve"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@vitest/coverage-v8": "catalog:",
"@zpress/kit": "^0.2.14",
"eslint-plugin-functional": "^9.0.4",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-security": "^4.0.0",
"laufen": "^1.2.1",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"turbo": "^2.8.20",
"vitest": "catalog:"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@9.15.4",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint"
]
},
"overrides": {
"@rspack/core": "2.0.0-beta.3",
"@rspack/binding": "2.0.0-beta.3"
}
}
}