-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.16 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "codeboltjs-monorepo",
"version": "1.0.0",
"description": "Monorepo for CodeBolt JavaScript packages",
"private": true,
"scripts": {
"build": "turbo run build",
"build:core": "bash scripts/build.sh core",
"build:agents": "bash scripts/build.sh agents",
"build:providers": "bash scripts/build.sh providers",
"build:actions": "bash scripts/build.sh actions",
"build:main": "bash scripts/build.sh main",
"build:all": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean",
"build:docs": "turbo run build:docs",
"build:plugins": "turbo run build --filter=./agentcreator/customnodes/*",
"dev:plugins": "turbo run dev --filter=./agentcreator/customnodes/*",
"clean:plugins": "turbo run clean --filter=./agentcreator/customnodes/*",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"example": "turbo run example:basic",
"publish:codeboltjs": "bash scripts/publish-codeboltjs.sh",
"publish:codeboltjs:skip": "bash scripts/publish-codeboltjs.sh skip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeboltai/codeboltjs.git"
},
"keywords": [
"monorepo",
"turborepo",
"codebolt",
"javascript",
"typescript"
],
"author": "CodeBolt",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeboltai/codeboltjs/issues"
},
"homepage": "https://github.com/codeboltai/codeboltjs#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.16.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"eslint": "^9.16.0",
"turbo": "^2.5.6",
"typescript": "^5.4.5",
"typescript-eslint": "^8.39.0"
},
"pnpm": {
"overrides": {
"@humanwhocodes/config-array": "npm:@eslint/config-array@^0.21.0",
"@humanwhocodes/object-schema": "npm:@eslint/object-schema@^2.1.4",
"glob": "^10.4.5",
"rimraf": "^5.0.10",
"mkdirp": "^3.0.1",
"e2b>chalk": "4.1.2"
}
},
"packageManager": "pnpm@10.27.0"
}