-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.56 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@xylabs/config",
"version": "4.2.6",
"description": "TypeScript project scripts",
"keywords": [
"xylabs",
"utility",
"typescript"
],
"homepage": "https://xylabs.com",
"bugs": {
"url": "git+https://github.com/xylabs/ts-scripts/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xylabs/config.git"
},
"license": "LGPL-3.0-only",
"author": {
"name": "XY Labs Development Team",
"email": "[email protected]",
"url": "https://xylabs.com"
},
"sideEffects": false,
"type": "module",
"types": "dist/node/index.d.ts",
"workspaces": [
"packages/**/*"
],
"scripts": {
"build": "echo Building... && yarn clean && yarn compile",
"clean": "echo Cleaning... && yarn xy clean && yarn workspace @xylabs/ts-scripts-yarn3 rimraf ./dist",
"compile": "echo Compiling... && yarn workspace @xylabs/ts-scripts-yarn3 package-compile && yarn workspaces foreach -At --exclude @xylabs/ts-scripts-yarn3 run package-compile",
"deploy": "yarn deploy-patch",
"deploy-common": "yarn build && yarn version apply --all && yarn workspaces foreach --all --parallel npm publish",
"deploy-major": "yarn workspaces foreach --all version major --deferred && yarn deploy-common",
"deploy-minor": "yarn workspaces foreach --all version minor --deferred && yarn deploy-common",
"deploy-next": "yarn workspaces foreach --all version minor --deferred && yarn build && yarn version apply --all --prerelease && yarn workspaces foreach --all --parallel npm publish --tag next",
"deploy-next-major": "yarn workspaces foreach --all version major --deferred && yarn build && yarn version apply --all --prerelease && yarn workspaces foreach --all --parallel npm publish --tag next",
"deploy-patch": "yarn workspaces foreach --all version patch --deferred && yarn deploy-common"
},
"dependencies": {
"@xylabs/ts-scripts-yarn3": "workspace:^",
"knip": "^5.41.0"
},
"devDependencies": {
"@eslint/json": "^0.9.0",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.10.2",
"@xylabs/eslint-config-flat": "workspace:^",
"@xylabs/ts-scripts-yarn3": "workspace:^",
"@xylabs/tsconfig": "workspace:^",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-import-resolver-typescript": "^3.7.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"typescript": "^5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.16"
},
"publishConfig": {
"access": "public"
}
}