@uptomic/career-mentor-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@uptomic/career-mentor-cli",
3
+ "version": "0.1.0",
4
+ "description": "Official agent-ready CLI for the Career Mentor Capability API",
5
+ "type": "module",
6
+ "bin": {
7
+ "cm": "./dist/index.js",
8
+ "career-mentor": "./dist/career-mentor.js"
9
+ },
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "dist/**/*",
19
+ "README.md",
20
+ "LICENSE"
21
+ ],
22
+ "sideEffects": false,
23
+ "scripts": {
24
+ "build": "bun run sdk:build && bun run build:cli",
25
+ "build:cli": "bun ./scripts/build.ts && tsc -p tsconfig.build.json",
26
+ "check": "bun run sdk:build && bun run test:unit && bun run typecheck:cli && bun run build:cli && bun run test:package && bun run pack:dry-run",
27
+ "pack:dry-run": "bun pm pack --dry-run --ignore-scripts",
28
+ "prepack": "bun run build && bun run test:package",
29
+ "prepublishOnly": "bun run release:check",
30
+ "release:check": "bun run check",
31
+ "release:dry-run": "bun run release:check && bun publish --dry-run --ignore-scripts --access public",
32
+ "sdk:build": "bun run --cwd ../career-mentor-sdk build",
33
+ "test": "bun run sdk:build && bun run test:unit",
34
+ "test:unit": "vitest run",
35
+ "test:package": "bun ./scripts/verify-package.ts",
36
+ "typecheck": "bun run sdk:build && bun run typecheck:cli",
37
+ "typecheck:cli": "tsc --noEmit"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public",
41
+ "registry": "https://registry.npmjs.org/"
42
+ },
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/uptomic/career-mentor.git",
46
+ "directory": "packages/career-mentor-cli"
47
+ },
48
+ "homepage": "https://app.uptomic.com/docs",
49
+ "bugs": {
50
+ "url": "https://github.com/uptomic/career-mentor/issues"
51
+ },
52
+ "keywords": [
53
+ "career-mentor",
54
+ "agent",
55
+ "capability-api",
56
+ "cli",
57
+ "mcp"
58
+ ],
59
+ "author": "Career Mentor Team",
60
+ "license": "Apache-2.0",
61
+ "engines": {
62
+ "node": ">=20"
63
+ },
64
+ "devDependencies": {
65
+ "@uptomic/career-mentor": "0.1.0",
66
+ "@types/node": "^25.9.1",
67
+ "typescript": "^5.9.3",
68
+ "vitest": "^4.1.8"
69
+ }
70
+ }