-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.11 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.11 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
80
81
82
{
"name": "@tbrandenburg/work",
"version": "0.4.0",
"type": "module",
"description": "Unified, stateless command-line tool that bridges AI agents and task management systems",
"main": "dist/index.js",
"bin": {
"work": "./bin/run.js"
},
"scripts": {
"build": "tsc && npm run copy-templates",
"copy-templates": "mkdir -p dist/templates && cp src/templates/*.xml dist/templates/",
"dev": "ts-node src/index.ts",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist coverage",
"prepack": "npm run build"
},
"keywords": [
"cli",
"task-management",
"jira",
"github",
"linear",
"azure-devops",
"ai-agents",
"typescript"
],
"author": "work-cli contributors",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.13.1",
"@oclif/core": "^4.0.0",
"@oclif/plugin-help": "^6.0.0",
"@octokit/plugin-throttling": "^11.0.3",
"@octokit/rest": "^22.0.1",
"dotenv": "^17.2.3",
"fast-xml-parser": "^5.3.5",
"tslib": "^2.8.1"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^3.0.5"
},
"files": [
"dist",
"bin",
"package.json"
],
"oclif": {
"bin": "work",
"dirname": "work",
"commands": {
"strategy": "pattern",
"target": "./dist/cli/commands"
},
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " "
}
}