-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.46 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.46 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
{
"name": "agntk-monorepo",
"version": "0.1.0",
"private": true,
"description": "Agent SDK - AI agent tools and server for the AI SDK",
"type": "module",
"scripts": {
"build": "turbo build",
"test": "turbo test",
"test:coverage": "turbo test -- --coverage",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"dev": "turbo dev",
"clean": "turbo clean && rm -rf .turbo",
"inspect": "npx workflow inspect runs --web",
"test:integration": "pnpm --filter integration-tests run test",
"test:tools": "pnpm --filter integration-tests run test:tools",
"test:pipeline": "pnpm --filter integration-tests run test:pipeline",
"test:cli": "pnpm --filter integration-tests run test:cli",
"test:regression": "pnpm --filter integration-tests run test:regression",
"docs:dev": "pnpm --filter site run dev",
"docs:build": "node scripts/sync-readme-to-docs.mjs && pnpm --filter site run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bash scripts/release.sh",
"size": "size-limit"
},
"devDependencies": {
"@agntk/config-eslint": "workspace:*",
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@size-limit/preset-small-lib": "^12.0.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"size-limit": "^12.0.1",
"turbo": "^2.8.21",
"typescript-eslint": "^8.57.2"
},
"keywords": [
"ai",
"agent",
"sdk",
"llm",
"tools"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Phoenixrr2113/agntk.git"
},
"homepage": "https://github.com/Phoenixrr2113/agntk#readme",
"bugs": {
"url": "https://github.com/Phoenixrr2113/agntk/issues"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.0.0",
"pnpm": {
"overrides": {
"lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
"next@>=15.6.0-canary.0 <16.1.5": ">=16.1.5",
"next@>=16.1.0-canary.0 <16.1.5": ">=16.1.5",
"next@>=16.0.0-beta.0 <16.1.5": ">=16.1.5",
"devalue@<=5.6.2": ">=5.6.3",
"minimatch@<3.1.3": ">=3.1.3",
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"basic-ftp@<5.2.0": ">=5.2.0",
"minimatch@<3.1.4": ">=3.1.4",
"fast-xml-parser@>=5.0.0 <5.3.6": ">=5.3.6",
"ajv@<6.14.0": ">=6.14.0",
"svgo@=4.0.0": ">=4.0.1",
"fast-xml-parser@>=5.0.0 <5.3.8": ">=5.3.8",
"tar@<=7.5.9": ">=7.5.10",
"file-type@>=13.0.0 <21.3.1": ">=21.3.1",
"tar@<=7.5.10": ">=7.5.11",
"devalue@<5.6.4": ">=5.6.4",
"devalue@<=5.6.3": ">=5.6.4",
"flatted@<3.4.0": ">=3.4.0",
"undici@>=7.0.0 <7.24.0": ">=7.24.0",
"undici@>=6.0.0 <6.24.0": ">=6.24.0",
"undici@<6.24.0": ">=6.24.0",
"undici@>=7.17.0 <7.24.0": ">=7.24.0",
"yauzl@=3.2.0": ">=3.2.1",
"file-type@>=20.0.0 <=21.3.1": ">=21.3.2",
"h3@<1.15.6": ">=1.15.6",
"next@>=16.0.0-beta.0 <16.1.7": ">=16.1.7",
"flatted@<=3.4.1": ">=3.4.2",
"next@>=16.0.1 <16.1.7": ">=16.1.7",
"fast-xml-parser@>=4.0.0-beta.3 <=5.5.6": ">=5.5.7",
"h3@<1.15.9": ">=1.15.9",
"h3@<=1.15.8": ">=1.15.9",
"fast-xml-parser@>=4.0.0-beta.3 <=5.5.5": ">=5.5.6",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3",
"picomatch@<2.3.2": ">=2.3.2",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"smol-toml@<1.6.1": ">=1.6.1"
}
}
}