forked from kube/vscode-42header
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 3.88 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 3.88 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "42header-multicampus",
"displayName": "42 Header Multi-Campus (Community Fork)",
"description": "Community-maintained fork of vscode-42header by kube. Adds a 35+ campus picker that auto-derives your student email, a remappable insert shortcut from the Command Palette, and ongoing security/dependency updates.",
"version": "0.42.16",
"publisher": "ensui-dev",
"icon": "42.png",
"repository": {
"type": "git",
"url": "https://github.com/ensui-dev/vscode-42header-plus"
},
"bugs": {
"url": "https://github.com/ensui-dev/vscode-42header-plus/issues"
},
"homepage": "https://github.com/ensui-dev/vscode-42header-plus",
"license": "MIT",
"keywords": [
"42",
"header",
"42network",
"school42",
"42school",
"ecole42",
"42header",
"code-header",
"file-header"
],
"engines": {
"vscode": "^1.6.0"
},
"categories": [
"Formatters",
"Other"
],
"galleryBanner": {
"color": "#1E1E1E",
"theme": "dark"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"properties": {
"42header.username": {
"type": "string",
"description": "Username to use in 42 headers"
},
"42header.email": {
"type": "string",
"description": "Email address to use in 42 headers (overrides campus-based email)"
},
"42header.campus": {
"type": "string",
"enum": [
"42.fr",
"42abudhabi.ae",
"42adel.org.au",
"42aleppo.com",
"42amman.com",
"42urduliz.com",
"42bangkok.com",
"42barcelona.com",
"42beirut.com",
"42berlin.de",
"42.edu.br",
"42firenze.it",
"codam.nl",
"42heilbronn.de",
"42kl.edu.my",
"42lausanne.ch",
"42lisboa.com",
"42london.com",
"42luxembourg.lu",
"42lyon.fr",
"42madrid.com",
"42malaga.com",
"42vienna.com",
"1337.ma",
"42mulhouse.fr",
"42network.org",
"42perpignan.fr",
"42porto.com",
"42quebec.com",
"42roma.it",
"42seoul.kr",
"42singapore.sg",
"42tokyo.jp",
"42wolfsburg.de",
"42yerevan.am"
],
"default": "42.fr",
"description": "Select your 42 campus to automatically set the email domain"
}
}
},
"commands": [
{
"command": "42header.insertHeader",
"title": "Insert 42 header",
"when": "editorTextFocus"
},
{
"command": "42header.changeKeybinding",
"title": "42 Header: Change Keybinding"
}
],
"keybindings": [
{
"command": "42header.insertHeader",
"key": "ctrl+alt+h",
"mac": "cmd+alt+h",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run bundle",
"bundle": "node esbuild.js --production",
"bundle:watch": "node esbuild.js --watch",
"compile": "tsc -watch -p ./",
"build": "tsc -p ./",
"pretest": "npm run build",
"test": "node ./out/test/runTest.js",
"test:unit": "mocha --require ts-node/register 'src/test/suite/**/*.test.ts'",
"lint": "tsc --noEmit"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "^16.0.0",
"@types/vscode": "^1.6.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.9.1",
"chai": "^6.2.0",
"esbuild": "^0.28.0",
"glob": "^11.0.3",
"mocha": "^11.7.4",
"ovsx": "^0.10.12",
"typescript": "^4.9.0"
},
"dependencies": {
"moment": "^2.15.0"
}
}