-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 3.34 KB
/
package.json
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "context-copy",
"displayName": "Context Copy",
"publisher": "collinc777",
"repository": {
"type": "git",
"url": "https://github.com/collinc777/context-copy"
},
"description": "VS Code extension that enables one-click copying of multiple files as markdown. Features automatic language detection, file path inclusion, and clipboard integration for seamless code sharing and documentation.",
"version": "0.3.0",
"engines": {
"vscode": "^1.91.0"
},
"icon": "logo.png",
"categories": [
"Other"
],
"main": "./out/extension.js",
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "extension.filesToMarkdown",
"title": "Copy for Context"
},
{
"command": "extension.tabsToMarkdown",
"title": "Copy All Open Tabs for Context"
},
{
"command": "extension.singleFileToMarkdown",
"title": "Copy This File for Context"
},
{
"command": "extension.tabGroupToMarkdown",
"title": "Copy This Tab Group for Context"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.filesToMarkdown"
}
],
"editor/title": [
{
"command": "extension.tabsToMarkdown"
}
],
"editor/title/context": [
{
"command": "extension.singleFileToMarkdown",
"group": "navigation@999",
"when": "resource"
},
{
"command": "extension.tabGroupToMarkdown",
"group": "navigation@999"
},
{
"command": "extension.tabsToMarkdown",
"group": "navigation@999"
}
],
"commandPalette": [
{
"command": "extension.filesToMarkdown",
"title": "Copy for Context"
},
{
"command": "extension.tabsToMarkdown",
"title": "Copy All Open Tabs for Context"
},
{
"command": "extension.singleFileToMarkdown",
"title": "Copy This File for Context"
},
{
"command": "extension.tabGroupToMarkdown",
"title": "Copy This Tab Group for Context"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"format": "prettier --write 'src/**/*.{js,ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{js,ts,tsx}'",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"cpi": "npm run compile && npm run package && code-insiders --install-extension $(ls context-copy-*.vsix | head -n 1)"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
}
}