-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.07 KB
/
Copy pathpackage.json
File metadata and controls
132 lines (132 loc) · 4.07 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "snapify-code",
"displayName": "Snapify Code 📸",
"description": "Create beautiful, shareable code screenshots right inside VS Code. Like Carbon.now.sh but faster and offline!",
"version": "1.1.1",
"publisher": "sitharaj",
"author": {
"name": "Sitharaj Seenivasan",
"url": "https://www.linkedin.com/in/sitharaj88"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sitharaj88/snapify-code.git"
},
"bugs": {
"url": "https://github.com/sitharaj88/snapify-code/issues"
},
"homepage": "https://github.com/sitharaj88/snapify-code#readme",
"icon": "media/icon.png",
"galleryBanner": {
"color": "#1a1a2e",
"theme": "dark"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other",
"Visualization"
],
"keywords": [
"screenshot",
"code",
"carbon",
"codeshot",
"snapshot",
"share",
"image",
"export",
"beautiful",
"twitter",
"social",
"png"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "codeshot.capture",
"title": "📸 CodeShot: Capture Selection"
}
],
"menus": {
"editor/context": [
{
"command": "codeshot.capture",
"when": "editorHasSelection",
"group": "9_cutcopypaste"
}
]
},
"configuration": {
"title": "CodeShot",
"properties": {
"codeshot.theme": {
"type": "string",
"enum": [
"dracula",
"monokai",
"nord",
"synthwave",
"github-dark",
"ocean",
"sunset",
"aurora",
"midnight"
],
"enumDescriptions": [
"🧛 Dracula - Purple to pink gradient",
"🎨 Monokai - Pink to blue gradient",
"❄️ Nord - Rainbow gradient",
"🌆 Synthwave - Neon pink & cyan",
"🐙 GitHub Dark - Deep navy",
"🌊 Ocean - Turquoise gradient",
"🌅 Sunset - Pink to yellow",
"🌌 Aurora - Cyan to green",
"🌙 Midnight - Deep purple"
],
"default": "dracula",
"description": "Color theme for snapshots"
},
"codeshot.windowStyle": {
"type": "string",
"enum": [
"mac",
"windows",
"none"
],
"default": "mac",
"description": "Window chrome style"
},
"codeshot.showLineNumbers": {
"type": "boolean",
"default": true,
"description": "Show line numbers in snapshot"
},
"codeshot.padding": {
"type": "number",
"default": 32,
"description": "Padding around the code (pixels)"
},
"codeshot.watermark": {
"type": "string",
"default": "",
"description": "Optional watermark text (e.g., @yourhandle)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/node": "16.x",
"typescript": "^5.1.3"
}
}