-
-
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) · 948 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 948 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": "@neetly/devtools",
"private": true,
"homepage": "https://github.com/neetly/devtools",
"repository": {
"type": "git",
"url": "https://github.com/neetly/devtools.git"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"check": "nx sync:check && prettier --check . && biome check",
"check:fix": "nx sync && prettier --write . && biome check --write",
"build": "nx run-many --target=build",
"release": "nx release --skip-publish",
"publish": "yarn workspaces foreach --all --no-private npm publish --access=public --tolerate-republish"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@neetly/biome-config": "workspace:*",
"@neetly/yarn-constraints": "workspace:*",
"@nx/js": "patch:@nx/js@20.4.0#~/patches/@nx/js.patch",
"nx": "20.5.0",
"prettier": "3.5.3",
"typescript": "5.8.2"
},
"packageManager": "yarn@4.7.0"
}