forked from VoltAgent/voltagent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 4.04 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 4.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "voltagent",
"description": "Backend framework with a monorepo structure using pnpm and lerna",
"version": "0.1.0",
"author": "",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.2.0",
"@esbuild-plugins/node-resolve": "^0.2.2",
"@nx/devkit": "^21.2.0",
"@nx/js": "20.4.6",
"@nx/plugin": "20.4.6",
"@nx/vite": "20.4.6",
"@nx/web": "20.4.6",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.3.12",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/node": "^24.2.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^1.3.1",
"husky": "^8.0.3",
"jsdom": "~22.1.0",
"lerna": "^7.4.2",
"lint-staged": "^15.4.3",
"nx": "^20.4.6",
"prettier": "^3.5.3",
"publint": "^0.3.8",
"rimraf": "^5.0.5",
"syncpack": "^13.0.2",
"tslib": "^2.3.0",
"tsup": "^8.5.0",
"typescript": "^5.8.2",
"vite": "^7.2.7",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{md,mdx}": [
"prettier --config ./.prettierrc --write"
]
},
"nx": {},
"packageManager": "pnpm@8.10.5",
"private": true,
"repository": "VoltAgent/voltagent.git",
"scripts": {
"archive:deprecated": "node scripts/archive-deprecated.js",
"attw": "lerna run attw --scope @voltagent/*",
"attw:all": "lerna run attw --scope @voltagent/*",
"biome": "biome",
"bootstrap": "lerna bootstrap",
"build": "lerna run build --ignore @voltagent/vercel-ai-exporter",
"build:all": "lerna run build --scope @voltagent/* --ignore @voltagent/vercel-ai-exporter --scope create-voltagent-app --concurrency 1",
"build:example": "lerna run build --scope voltagent-basic-example",
"changeset": "changeset",
"clean": "lerna run clean && lerna clean --yes && rimraf node_modules",
"coffee": "pnpm nuke && pnpm i && pnpm build:all",
"dev": "lerna run dev --ignore voltagent-example-*",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "biome check .",
"lint:ci": "biome ci .",
"lint:error": "biome check . --diagnostic-level error",
"lint:fix": "biome check . --write",
"lint:staged": "lint-staged",
"nuke": "echo 'Removing all node_modules, builds and lockfiles' && pnpm nuke:node_modules && pnpm nuke:builds && pnpm nuke:lockfiles",
"nuke:builds": "lerna exec -- rimraf dist && lerna exec -- rimraf build",
"nuke:lockfiles": "lerna exec -- rimraf package-lock.json && lerna exec -- rimraf yarn.lock && lerna exec -- rimraf pnpm-lock.yaml",
"nuke:node_modules": "lerna clean --yes && rimraf node_modules",
"nx": "nx",
"prepare": "husky install",
"prerelease:enter": "pnpm changeset pre enter next",
"prerelease:exit": "pnpm changeset pre exit",
"prerelease:publish": "pnpm build && pnpm changeset publish",
"prerelease:version": "pnpm changeset version",
"prerelease:version-packages": "pnpm changeset version && pnpm i --ignore-scripts --lockfile-only --no-frozen-lockfile --reporter=ndjson --stream && git add pnpm-lock.yaml",
"publint": "lerna run publint --scope @voltagent/core",
"publint:all": "lerna run publint --scope @voltagent/*",
"publish": "lerna publish",
"sp": "syncpack",
"start": "lerna run start",
"sync:docs-mcp": "node scripts/sync-docs-mcp.js",
"test": "lerna run test --stream",
"test:all": "lerna run test --stream --scope @voltagent/*",
"test:all:coverage": "pnpm test:all -- -- --coverage",
"test:coverage": "pnpm test -- -- --coverage",
"version-packages": "pnpm changeset version && pnpm i --ignore-scripts --lockfile-only --no-frozen-lockfile --reporter=ndjson --stream && git add pnpm-lock.yaml"
},
"workspaces": [
"packages/*",
"examples/*",
"examples/*/client",
"examples/*/server"
]
}