-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "hono-vite-plugins-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "MIT",
"packageManager": "yarn@4.10.3",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.14.1"
},
"scripts": {
"build": "tsdown",
"publish": "yarn workspaces foreach --all --no-private --topological --verbose npm publish --tolerate-republish && changeset tag",
"version": "changeset version",
"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": {
"@arethetypeswrong/core": "^0.18.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@hono/eslint-config": "^1.0.1",
"eslint": "^9.10.0",
"prettier": "^3.2.4",
"publint": "~0.3.0",
"tsdown": "^0.21.4",
"typescript": "^5.2.2",
"unplugin-unused": "^0.5.7"
}
}