-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathrush.json
More file actions
53 lines (53 loc) · 1.3 KB
/
rush.json
File metadata and controls
53 lines (53 loc) · 1.3 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush.schema.json",
"rushVersion": "5.150.0",
"pnpmVersion": "9.12.3",
"nodeSupportedVersionRange": ">=18",
"gitPolicy": {},
"repository": {
"url": "https://github.com/coze-dev/cozeloop-js",
"defaultBranch": "main",
"defaultRemote": "origin"
},
"eventHooks": {
"preRushInstall": [],
"postRushInstall": [],
"preRushBuild": [],
"postRushBuild": [],
"preRushx": [],
"postRushx": []
},
"projects": [
{
"packageName": "@loop-infra/eslint-config",
"projectFolder": "config/eslint-config",
"tags": ["infra"]
},
{
"packageName": "@loop-infra/ts-config",
"projectFolder": "config/ts-config",
"tags": ["infra"]
},
{
"packageName": "@loop-infra/vitest-config",
"projectFolder": "config/vitest-config",
"tags": ["infra"]
},
{
"packageName": "@cozeloop/ai",
"projectFolder": "packages/cozeloop-ai"
},
{
"packageName": "@cozeloop/langchain",
"projectFolder": "packages/cozeloop-langchain"
},
{
"packageName": "@cozeloop/ci-tools",
"projectFolder": "packages/ci-tools"
},
{
"packageName": "@cozeloop/ai-node-example",
"projectFolder": "examples/cozeloop-ai-node"
}
]
}