-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.95 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
{
"name": "opencode-agent",
"version": "1.2.0",
"description": "Azure DevOps pipeline task for running OpenCode AI agents on pull requests (review mode for build validation, command mode for comment-triggered runs).",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:task": "node build-task.js",
"debug": "tsx src/debug.ts",
"start": "node dist/index.js",
"prestart": "npm run build",
"clean": "rimraf dist coverage tasks/opencode/dist",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"package": "npm run build:task && tfx extension create --manifest-globs vss-extension.json",
"package:dev": "npm run build:task && tfx extension create --manifest-globs vss-extension.json --override \"{\\\"public\\\": false}\"",
"publish": "npm run build:task && tfx extension publish --manifest-globs vss-extension.json"
},
"keywords": [
"azure-devops",
"azure-pipelines",
"opencode",
"ai",
"code-review",
"pull-request",
"automation"
],
"author": "Martin Trojan",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/trojanmartin/opencode-azdo-extension"
},
"bugs": {
"url": "https://github.com/trojanmartin/opencode-azdo-extension/issues"
},
"homepage": "https://github.com/trojanmartin/opencode-azdo-extension#readme",
"dependencies": {
"@opencode-ai/sdk": "^1.3.17",
"azure-pipelines-task-lib": "^5.2.6"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.55.0",
"esbuild": "^0.27.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"tfx-cli": "^0.23.1",
"typescript": "^5.9.3"
}
}