-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.05 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.05 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
{
"name": "@harperfast/agent-tools",
"version": "1.1.7",
"description": "Shares the basic schema for agent tools used by Harper.",
"keywords": [],
"homepage": "https://github.com/harperfast",
"bugs": {
"url": "https://github.com/harperfast/agent-tools/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Harper",
"email": "support@harperdb.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarperFast/agent-tools.git"
},
"files": [
"dist/",
"!dist/**/*.test.js"
],
"type": "module",
"main": "./dist/tools/tools.js",
"module": "./dist/tools/tools.js",
"types": "./dist/tools/tools.d.ts",
"exports": {
".": {
"types": "./dist/tools/tools.d.ts",
"import": "./dist/tools/tools.js",
"default": "./dist/tools/tools.js"
},
"./tools/*": {
"types": "./dist/tools/*.d.ts",
"import": "./dist/tools/*.js"
},
"./types/*": {
"types": "./dist/types/*.d.ts",
"import": "./dist/types/*.js"
}
},
"scripts": {
"build": "tsc",
"commitlint": "commitlint --edit",
"format:check": "oxfmt --check",
"format:fix": "oxfmt --write",
"format:staged": "oxfmt --check --list-different",
"lint:check": "oxlint . --format stylish",
"lint:fix": "oxlint . --format stylish --fix",
"prepublish": "npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest"
},
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@harperfast/skills": "^1.3.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^24.10.11",
"@types/react": "^19.2.10",
"@vitest/coverage-v8": "^4.0.18",
"conventional-changelog-conventionalcommits": "^9.1.0",
"oxfmt": "^0.48.0",
"oxlint": "^1.51.0",
"semantic-release": "^25.0.2",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@harperfast/skills": "^1.3.0"
}
}