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
74 lines (74 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.93 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
{
"name": "voltagent",
"version": "0.1.0",
"private": true,
"description": "Backend framework with a monorepo structure using pnpm and lerna",
"license": "MIT",
"author": "",
"workspaces": ["packages/*", "examples/*"],
"scripts": {
"attw": "lerna run attw --scope @voltagent/core",
"attw:all": "lerna run attw --scope @voltagent/*",
"biome": "biome",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:all": "lerna run build --scope @voltagent/*",
"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 --parallel --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 . --apply",
"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",
"publint": "lerna run publint --scope @voltagent/core",
"publint:all": "lerna run publint --scope @voltagent/*",
"publish": "lerna publish",
"sp": "syncpack",
"start": "lerna run start",
"start:example": "lerna run start --scope voltagent-basic-example",
"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": "changeset version && pnpm i --ignore-scripts --lockfile-only --no-frozen-lockfile && git add pnpm-lock.yaml"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": ["biome format --write --no-errors-on-unmatched"],
"*.{md,mdx}": ["prettier --config ./.prettierrc --write"],
"package.json": ["sort-package-json"]
},
"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",
"husky": "^8.0.3",
"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",
"sort-package-json": "^2.15.1",
"syncpack": "^13.0.2",
"typescript": "^5.3.2"
},
"packageManager": "pnpm@8.10.5",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"nx": {}
}