-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.61 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.61 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
{
"name": "@nexvar/huly",
"version": "1.0.0",
"description": "CLI for the Huly Platform API with JSON-first output",
"keywords": [
"huly",
"cli",
"automation",
"api",
"ai-agent"
],
"homepage": "https://github.com/NexVar/huly-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/NexVar/huly-cli.git"
},
"bugs": {
"url": "https://github.com/NexVar/huly-cli/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"bin": {
"huly": "dist/bin/huly.js"
},
"files": [
"dist"
],
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.json",
"dev": "tsx src/bin/huly.ts",
"test": "tsx --test src/*.test.ts src/**/*.test.ts"
},
"dependencies": {
"@hcengineering/api-client": "^0.7.19",
"@hcengineering/board": "^0.7.0",
"@hcengineering/collaborator-client": "^0.7.18",
"@hcengineering/contact": "^0.7.0",
"@hcengineering/core": "^0.7.26",
"@hcengineering/document": "^0.7.0",
"@hcengineering/hr": "^0.7.0",
"@hcengineering/notification": "^0.7.0",
"@hcengineering/rank": "^0.7.0",
"@hcengineering/tags": "^0.7.0",
"@hcengineering/task": "^0.7.0",
"@hcengineering/text": "^0.7.19",
"@hcengineering/text-markdown": "^0.7.21",
"@hcengineering/time": "^0.7.0",
"@hcengineering/tracker": "^0.7.0",
"commander": "^14.0.3",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsx": "^4.20.5",
"typescript": "^5.9.3"
}
}