forked from honojs/vite-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 833 Bytes
/
package.json
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
{
"name": "hono-vite-plugins-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.14.1"
},
"scripts": {
"build": "yarn workspaces foreach run build",
"lint": "eslint 'packages/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix 'packages/**/*.{ts,tsx}'",
"format": "prettier --check 'packages/**/*.{ts,tsx}'",
"format:fix": "prettier --write 'packages/**/*.{ts,tsx}'"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@hono/eslint-config": "^0.0.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.55.0",
"prettier": "^3.2.4",
"typescript": "^5.2.2"
}
}