-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 789 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 789 Bytes
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
{
"name": "vite-plugin-typed-env-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "pnpm -r typecheck",
"release": "tsx scripts/release.ts"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^25.5.2",
"bumpp": "^11.0.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-perfectionist": "^4.7.0",
"prettier": "^3.8.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.30.1"
},
"packageManager": "pnpm@10.8.1",
"engines": {
"node": ">=20.0.0"
}
}