This repository was archived by the owner on Sep 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) Β· 2.58 KB
/
package.json
File metadata and controls
78 lines (78 loc) Β· 2.58 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
{
"name": "checkmark-copilot-chat",
"version": "0.1.0",
"description": "Custom chat modes for GitHub Copilot, starting with skillsets. Docs, logging, and more - no weird prompts required.",
"author": "Ashley Childress",
"license": "Apache-2.0",
"keywords": [
"github",
"copilot",
"vscode",
"extension",
"chat",
"automation",
"security"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CheckMarKDevTools/checkmark-copilot-chat.git"
},
"bugs": {
"url": "https://github.com/CheckMarKDevTools/checkmark-copilot-chat/issues"
},
"homepage": "https://github.com/CheckMarKDevTools/checkmark-copilot-chat#readme",
"directories": {
"doc": "docs"
},
"volta": {
"node": "24.4.1",
"npm": "11.4.2"
},
"type": "module",
"main": "index.js",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"build": "echo \"π¬ Now Building: Season 1, Episode 1 β 'The Setup Begins' π‘π οΈ (Coming soon to a terminal near you...)\"",
"test": "echo \"πΊ Previously on 'ChecKMarK': The tests... don't exist. But stay tuned β filming starts soon. πβ¨π¦πΏ\"",
"prepare": "command -v husky >/dev/null 2>&1 && husky install",
"format": "npm run format:prettier && npm run format:remark && npm run format:fix-admonitions",
"format:prettier": "prettier --write . --log-level silent",
"format:remark": "remark . -o --quiet",
"format:fix-admonitions": "node scripts/fix-github-admonitions.js",
"lint": "eslint . --fix --no-warn-ignored",
"spellcheck": "cspell . --show-suggestions",
"check": "npm run format && npm run lint && npm run spellcheck",
"commitlint": "commitlint --edit"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@cspell/dict-bash": "4.2.1",
"@cspell/dict-companies": "3.2.3",
"@cspell/dict-shell": "1.1.1",
"@cspell/eslint-plugin": "9.2.0",
"@microsoft/sarif-multitool": "4.5.4",
"cspell": "9.2.0",
"eslint": "9.32.0",
"eslint-plugin-naming": "0.1.10",
"glob": "11.0.3",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"prettier": "3.6.2",
"release-please": "17.1.1",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.1",
"remark-github": "12.0.0",
"remark-lint": "10.0.1",
"remark-lint-no-unneeded-full-reference-link": "4.0.1",
"remark-stringify": "11.0.0"
},
"dependencies": {
"@octokit/core": "5.2.2",
"dotenv": "17.2.1",
"express": "5.1.0"
}
}