@harperfast/agent 0.10.6

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,82 @@
1
+ {
2
+ "name": "@harperfast/agent",
3
+ "description": "AI to help you with Harper app management",
4
+ "version": "0.10.6",
5
+ "main": "dist/agent.js",
6
+ "repository": "github:HarperFast/harper-agent",
7
+ "bugs": {
8
+ "url": "https://github.com/harperfast/harper-agent/issues"
9
+ },
10
+ "homepage": "https://github.com/harperfast",
11
+ "scripts": {
12
+ "dev": "tsup agent.ts --format esm --clean --dts --watch",
13
+ "build": "tsup agent.ts --format esm --clean --dts",
14
+ "commitlint": "commitlint --edit",
15
+ "start": "node ./dist/agent.js",
16
+ "lint": "oxlint .",
17
+ "lint:fix": "oxlint . --fix",
18
+ "prepare": "husky",
19
+ "format": "dprint check",
20
+ "format:fix": "dprint fmt",
21
+ "format:staged": "dprint check --staged --allow-no-files",
22
+ "test": "vitest --run",
23
+ "test:coverage": "vitest run --coverage",
24
+ "test:watch": "vitest",
25
+ "test:e2e": "vitest -c vitest.e2e.config.ts run",
26
+ "prepublishOnly": "npm run build"
27
+ },
28
+ "bin": {
29
+ "harper-agent": "./dist/agent.js"
30
+ },
31
+ "keywords": [],
32
+ "author": {
33
+ "name": "HarperDB",
34
+ "email": "support@harperdb.io"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "!dist/**/*.test.*",
39
+ "!dist/**/*.map"
40
+ ],
41
+ "license": "None",
42
+ "type": "module",
43
+ "dependencies": {
44
+ "@ai-sdk/anthropic": "^3.0.36",
45
+ "@ai-sdk/google": "^3.0.20",
46
+ "@ai-sdk/openai": "^3.0.25",
47
+ "@openai/agents": "^0.4.5",
48
+ "@openai/agents-extensions": "^0.4.5",
49
+ "ai": "^6.0.69",
50
+ "chalk": "^5.6.2",
51
+ "create-harper": "^0.12.0",
52
+ "cross-spawn": "^7.0.6",
53
+ "dotenv": "^17.2.3",
54
+ "ollama-ai-provider-v2": "^3.0.3",
55
+ "sqlite3": "^5.1.7",
56
+ "zod": "^4.3.6"
57
+ },
58
+ "devDependencies": {
59
+ "@commitlint/cli": "^20.4.1",
60
+ "@commitlint/config-conventional": "^20.4.1",
61
+ "@semantic-release/commit-analyzer": "^13.0.1",
62
+ "@semantic-release/git": "^10.0.1",
63
+ "@semantic-release/github": "^12.0.3",
64
+ "@semantic-release/npm": "^13.1.3",
65
+ "@semantic-release/release-notes-generator": "^14.1.0",
66
+ "@types/cross-spawn": "^6.0.6",
67
+ "@types/node": "^25.2.0",
68
+ "@vitest/coverage-v8": "^4.0.18",
69
+ "conventional-changelog-conventionalcommits": "^9.1.0",
70
+ "dprint": "^0.51.1",
71
+ "express": "^5.2.1",
72
+ "harperdb": "^4.7.17",
73
+ "hono": "^4.11.9",
74
+ "husky": "^9.1.7",
75
+ "oxlint": "^1.43.0",
76
+ "semantic-release": "^25.0.3",
77
+ "tsup": "^8.5.1",
78
+ "tsx": "^4.21.0",
79
+ "typescript": "^5.9.3",
80
+ "vitest": "^4.0.18"
81
+ }
82
+ }