-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
{
"private": true,
"homepage": "https://dotconnect.dev/",
"bugs": {
"url": "https://github.com/tien/dot-connect/issues",
"email": "tien.nguyenkhac@icloud.com"
},
"license": "LGPL-3.0-or-later",
"author": "Tiến Nguyễn Khắc <tien.nguyenkhac@icloud.com> (https://tien.zone/)",
"repository": "github:tien/dot-connect",
"type": "module",
"packageManager": "yarn@4.5.3",
"volta": {
"node": "22.11.0",
"yarn": "4.5.3"
},
"engines": {
"node": "22.x"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "nx run-many -t dev",
"build": "nx run-many -t build",
"build:packages": "nx run-many -t build --projects='packages/*'",
"publish:packages": "yarn build:packages && yarn workspaces foreach -Apt --no-private npm publish --tolerate-republish && yarn changeset tag",
"lint": "nx run-many -t lint",
"postinstall": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"husky": "^9.1.7",
"nx": "^20.4.6",
"prettier": "^3.5.2"
}
}