-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.45 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.45 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
{
"name": "ft-header",
"displayName": "ft_utils",
"description": "Utilities for 42 students: 42 header insertion, auto-header for new files, C function count, and flake8-friendly Python header width.",
"version": "2.4.2",
"icon": "42.png",
"publisher": "2mdtln",
"repository": {
"type": "git",
"url": "https://github.com/2mdtln/ft-utils-vscode.git"
},
"bugs": {
"url": "https://github.com/2mdtln/ft-utils-vscode/issues"
},
"homepage": "https://github.com/2mdtln/ft-utils-vscode",
"engines": {
"vscode": "^1.70.0"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"42",
"ecole 42",
"42 header",
"42-header",
"42school",
"norminette",
"piscine",
"ft-header",
"header template",
"c"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "ft_utils.insertHeader",
"title": "ft_utils: Insert 42 Header"
},
{
"command": "ft_utils.toggleAutoInsert",
"title": "ft_utils: Toggle 42 Auto Header"
},
{
"command": "ft_utils.toggleUpdateOnSave",
"title": "ft_utils: Toggle Header Update On Save"
},
{
"command": "ft_utils.showStarPrompt",
"title": "ft_utils: Show GitHub Star Prompt"
}
],
"keybindings": [
{
"command": "ft_utils.insertHeader",
"key": "ctrl+alt+h",
"mac": "cmd+alt+h",
"win": "ctrl+alt+h",
"linux": "ctrl+alt+h"
}
],
"configuration": {
"title": "ft_utils",
"properties": {
"ft_utils.login": {
"type": "string",
"description": "Student login on header. (Optional)",
"default": ""
},
"ft_utils.email": {
"type": "string",
"description": "Student email on header.",
"default": ""
}
}
}
},
"scripts": {
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run check-types && pnpm run lint && node esbuild.js",
"watch": "node esbuild.js --watch",
"package": "pnpm run check-types && pnpm run lint && node esbuild.js --production",
"check-types": "tsc --noEmit",
"lint": "eslint src"
},
"devDependencies": {
"@types/node": "~22.19.15",
"@types/vscode": "^1.70.0",
"esbuild": "^0.27.4",
"eslint": "^9.39.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2"
}
}