-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "everything-copilot-cli",
"version": "1.0.0",
"description": "The definitive guide & configuration system for GitHub Copilot CLI — agents, skills, rules, orchestration, and more",
"keywords": [
"github-copilot",
"copilot-cli",
"ai-coding",
"agents",
"skills",
"orchestration",
"multi-ai",
"mcp",
"claude-code",
"codex"
],
"author": "Everything Copilot CLI Contributors",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/drvoss/everything-copilot-cli"
},
"scripts": {
"test": "node --test tests/*.test.js",
"eval": "node scripts/run-promptfoo-eval.js",
"validate": "node scripts/validate-config.js",
"lint:md": "markdownlint \"**/*.md\" --ignore node_modules --ignore _tmp",
"setup": "node scripts/setup.js",
"build:plugins": "node scripts/build-plugin-bundles.mjs",
"check:plugins": "node scripts/build-plugin-bundles.mjs --check",
"lint:skills": "node scripts/vally-gate.mjs",
"lint:plugins": "node scripts/vally-gate.mjs --root plugins/copilot-native-workflows/skills --strict-all",
"smoke:quad": "node scripts/quad-cli-smoke.mjs",
"smoke:quad:available": "node scripts/quad-cli-smoke.mjs --available"
},
"devDependencies": {
"@microsoft/vally": "0.13.0",
"js-yaml": "5.2.3",
"markdownlint-cli": "0.47.0"
},
"engines": {
"node": ">=18"
}
}