-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.22 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
{
"name": "@inkeep/create-agents",
"version": "0.78.3",
"description": "Create an Inkeep Agent Framework project",
"type": "module",
"bin": {
"create-agents": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md",
"SUPPLEMENTAL_TERMS.md"
],
"scripts": {
"knip": "knip --directory ../.. --workspace packages/create-agents --dependencies",
"dev": "tsx src/index.ts",
"build": "tsc",
"lint": "biome lint --error-on-warnings",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest --run src/__tests__ --exclude src/__tests__/e2e/** --passWithNoTests",
"test:watch": "vitest src/__tests__ --exclude src/__tests__/e2e/**",
"test:unit": "vitest --run src/__tests__ --exclude src/__tests__/e2e/**",
"test:e2e": "turbo run build --filter=@inkeep/create-agents --filter=@inkeep/agents-api --filter=@inkeep/agents-cli --filter=@inkeep/agents-manage-ui && vitest --run src/__tests__/e2e",
"test:e2e:watch": "turbo run build --filter=@inkeep/create-agents --filter=@inkeep/agents-api --filter=@inkeep/agents-cli --filter=@inkeep/agents-manage-ui && vitest src/__tests__/e2e",
"test:all": "vitest --run --passWithNoTests",
"typecheck": "tsc --noEmit"
},
"keywords": [
"inkeep",
"agents",
"ai",
"framework",
"boilerplate",
"typescript",
"project",
"starter",
"cli",
"create",
"init"
],
"author": "Inkeep <support@inkeep.com>",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@clack/prompts": "^0.11.0",
"@inkeep/agents-core": "workspace:*",
"commander": "^12.0.0",
"degit": "^2.8.4",
"fs-extra": "^11.0.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/degit": "^2.8.6",
"@types/fs-extra": "^11.0.0",
"@types/node": "^20.12.0",
"execa": "^9.6.0",
"playwright": "^1.58.2",
"tsx": "^4.7.0",
"typescript": "^6.0.2",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=22.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/inkeep/agents.git",
"directory": "packages/create-agents"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}