-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 634 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 634 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"type": "module",
"private": true,
"packageManager": "pnpm@9.15.6",
"license": "MIT",
"engines": {
"node": "^18.20.8 || ^20.3.0 || >=22"
},
"scripts": {
"build": "pnpm --filter=\"./packages/*\" --recursive run build",
"dev": "pnpm --filter=\"./packages/*\" --recursive run dev",
"lint": "eslint --max-warnings 0 .",
"prepublishOnly": "pnpm run build",
"test": "pnpm --filter=\"playground\" --recursive run test"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.9.0",
"eslint": "10.0.2",
"jiti": "2.6.1",
"typescript-eslint": "8.56.1"
}
}