-
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.33 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.33 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",
"pnpm": {
"overrides": {
"js-yaml@>=3.0.0 <3.15.2": "3.15.2"
}
},
"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/source-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 && node scripts/validate-coverage-budgets.cjs",
"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",
"generate:specifications": "node scripts/validate-specification-catalog.cjs --write && node scripts/validate-github-communication-test-budget.cjs",
"validate:specifications": "node scripts/validate-specification-catalog.cjs && node scripts/validate-github-communication-test-budget.cjs",
"lint:fix": "eslint src --fix",
"postinstall": "node scripts/install-git-hooks.cjs"
},
"keywords": [],
"author": "Efra Espada",
"license": "MIT",
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/exec": "^2.0.0",
"@actions/github": "^8.0.1",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"commander": "^12.0.0",
"js-yaml": "^5.4.1",
"shell-quote": "^1.8.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.9.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^10.10.0",
"jest": "^30.5.1",
"ts-jest": "^29.4.5",
"typescript": "^5.2.2",
"typescript-eslint": "^8.70.0"
}
}