-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.63 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
{
"name": "@interslavic/cli",
"version": "2.0.0",
"description": "Interslavic CLI toolkit",
"main": "dist/cli.js",
"bin": {
"isv": "dist/cli.js"
},
"type": "module",
"workspaces": [
"packages/*",
"presets/*"
],
"files": [
"dist/cli.*"
],
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"prepare": "husky install",
"build": "node scripts/esbuild.js",
"start": "node dist/cli.js",
"lint": "yarn workspaces foreach --exclude '@interslavic/cli' -R run lint",
"test": "yarn workspaces foreach --exclude '@interslavic/cli' -R run test",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@interslavic/database-engine": "workspace:*",
"@interslavic/database-engine-analysis": "workspace:*",
"@interslavic/database-engine-core": "workspace:*",
"@interslavic/database-engine-fs": "workspace:*",
"@interslavic/database-engine-google": "workspace:*",
"@interslavic/eslint-config-cli": "workspace:*",
"@interslavic/jest-config-cli": "workspace:*",
"@interslavic/prettier-config-cli": "workspace:*",
"@interslavic/typescript-config-cli": "workspace:*",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.23.1",
"esbuild-node-externals": "^1.14.0",
"husky": "^9.1.5",
"semantic-release": "^24.1.0",
"zx": "^8.1.5"
},
"optionalDependencies": {
"dtrace-provider": "^0.8.8"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"pkgRoot": "."
},
"packageManager": "[email protected]"
}