-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.91 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.91 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
{
"name": "talent-agent",
"version": "1.1.4",
"description": "AI-powered talent search CLI for natural language queries",
"type": "module",
"bin": {
"talent-agent": "./bin/cli.mjs"
},
"files": [
"src",
"skills",
"bin",
"scripts/postinstall.js"
],
"exports": {
".": "./src/lib.ts",
"./cli": "./src/index.ts"
},
"keywords": [
"cli",
"ai",
"talent",
"search",
"mcp",
"tui",
"natural-language",
"bun"
],
"license": "Apache-2.0",
"engines": {
"bun": ">=1.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talentprotocol/talent-agent.git"
},
"bugs": {
"url": "https://github.com/talentprotocol/talent-agent/issues"
},
"homepage": "https://pro.talent.app/cli",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"prepare": "husky",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"typecheck": "bunx tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"changeset": "changeset",
"version:packages": "changeset version",
"ci:version": "changeset version",
"ci:publish": "changeset publish",
"postinstall": "node scripts/postinstall.js || true",
"docker:build": "docker build -f docker/Dockerfile -t talent-agent .",
"docker:serve": "docker compose -f docker/docker-compose.yml up talent-agent-mcp"
},
"lint-staged": {
"src/**/*.ts": "prettier --write"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@opentui/core": "latest",
"ai": "^6.0.50",
"nanoid": "^5.1.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"bun-types": "^1.3.9",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"vitest": "^4.0.18"
}
}