-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 788 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 788 Bytes
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
{
"name": "@openacp/git-watcher",
"version": "2026.423.2",
"description": "Watch upstream GitHub repos for PR merges and create impact analysis issues in downstream repos",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "MIT",
"keywords": [
"openacp",
"openacp-plugin"
],
"engines": {
"openacp": ">=2026.420.1"
},
"peerDependencies": {
"@openacp/cli": ">=2026.420.1"
},
"devDependencies": {
"@openacp/plugin-sdk": "2026.423.1",
"@types/node": "^25.6.0",
"typescript": "^5.4.0",
"vitest": "^3.0.0"
},
"dependencies": {
"nanoid": "^5.1.9"
}
}