-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.12 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@vypdev/copilot",
"version": "3.3.1",
"packageManager": "pnpm@10.12.4",
"description": "Automates branch management, GitHub project linking, and issue/PR tracking with Git-Flow methodology.",
"homepage": "https://github.com/vypdev/copilot",
"repository": {
"type": "git",
"url": "https://github.com/vypdev/copilot.git"
},
"bugs": {
"url": "https://github.com/vypdev/copilot/issues"
},
"main": "build/github_action/index.js",
"exports": {
".": "./build/github_action/index.js",
"./bugbot": {
"types": "./build/api/src/api.d.ts",
"default": "./build/api/index.js"
}
},
"bin": {
"copilot": "./build/cli/index.js"
},
"files": [
"action.yml",
"build/cli/index.js",
"build/github_action/index.js",
"build/api/index.js",
"build/api/src/",
"setup/ISSUE_TEMPLATE/",
"setup/workflows/",
"setup/pull_request_template.md",
"scripts/install-git-hooks.cjs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=24"
},
"scripts": {
"build": "node scripts/clean-generated-bundles.cjs && ncc build src/actions/github_action.ts -o build/github_action && ncc build src/cli.ts -o build/cli && ncc build src/api.ts -o build/api && node scripts/prepare-generated-bundles.cjs && chmod +x build/cli/index.js",
"validate:build": "node scripts/validate-build.cjs",
"validate:npm-package": "node scripts/validate-npm-package.cjs",
"smoke:npm-package": "node scripts/smoke-test-npm-package.cjs",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eval:bugbot": "jest src/tooling/__tests__/bugbot_quality_eval.test.ts src/tooling/__tests__/bugbot_benchmark.test.ts --runInBand",
"typecheck": "tsc --noEmit",
"metrics:architecture": "node scripts/collect-architecture-metrics.cjs",
"lint": "eslint src",
"validate:agent-docs": "node scripts/validate-agent-documentation.cjs",
"validate:docs-page": "node scripts/validate-docs-page-assets.cjs",
"validate:documentation": "node scripts/validate-documentation-contract.cjs",
"validate:workflows": "node scripts/validate-workflow-contract.cjs",
"lint:fix": "eslint src --fix",
"postinstall": "node scripts/install-git-hooks.cjs"
},
"keywords": [],
"author": "Efra Espada",
"license": "MIT",
"dependencies": {
"@actions/cache": "^4.1.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@types/axios": "^0.14.4",
"@types/chance": "^1.1.6",
"@types/js-yaml": "^4.0.9",
"axios": "^1.8.4",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"chance": "^1.1.12",
"commander": "^12.0.0",
"dockerode": "^4.0.5",
"js-yaml": "^4.1.0",
"shell-quote": "^1.8.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/dockerode": "^3.3.37",
"@types/jest": "^30.0.0",
"@types/node": "^22.9.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^9.15.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "^5.2.2",
"typescript-eslint": "^8.15.0"
}
}