-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.06 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.06 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
{
"name": "fujocoded-plugins",
"private": true,
"workspaces": [
"*/",
"!.*/"
],
"type": "module",
"scripts": {
"build": "npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"release": "npm run build && changeset publish --provenance",
"sherif": "npx sherif@latest --ignore-rule non-existant-packages --fail-on-warnings",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"lint:ci": "oxlint --type-aware --deny-warnings",
"format": "oxfmt && prettier --write \"**/*.astro\"",
"format:check": "oxfmt --check && prettier --check \"**/*.astro\"",
"check": "npm run format:check && npm run lint:ci && npm run sherif && npm run typecheck && npm run build",
"fix": "npm run format && npm run lint:fix"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"oxlint-tsgolint": "^0.21.1",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1"
},
"packageManager": "npm@11.5.1"
}