-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 881 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 881 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
{
"name": "root",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"dev": "npm run dev --workspaces",
"lint:types": "tsc --noEmit",
"lint:check": "eslint --max-warnings=0",
"lint:fix": "eslint --fix",
"format:check": "prettier --check \"**/*.{ts,tsx,js,css,yaml}\"",
"format:write": "prettier --write \"**/*.{ts,tsx,js,css,yaml}\"",
"publish": "npm run build && npm publish --workspaces",
"publish:dry": "npm run build && npm publish --dry-run --workspaces",
"version": "npm version --workspaces"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-only-warn": "^1.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"bunchee": "^6.5.1"
}
}