-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.68 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.68 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
{
"name": "vscode-hyperupcall",
"displayName": "hyperupcall",
"description": "Edwin's vscode extension",
"version": "0.20.0",
"publisher": "EdwinKofler",
"engines": {
"vscode": "^1.54.0"
},
"license": "BSD-3-Clause",
"categories": [],
"scripts": {
"watch": "tsc -w -p ./",
"build": "tsc -p ./",
"format": "hyperupcall-scripts-nodejs format",
"lint": "hyperupcall-scripts-nodejs lint"
},
"icon": "assets/icon.jpg",
"contributes": {
"configurationDefaults": {
"files.associations": {
"**/profiles/*/settings.json": "vscode-settings"
}
},
"languages": [
{
"id": "vscode-settings",
"aliases": [
"VSCode Settings",
"vscode-settings"
],
"configuration": "./language-configuration/vscode-settings.language-configuration.json"
}
],
"grammars": [
{
"language": "vscode-settings",
"scopeName": "source.vscode-settings",
"path": "./syntaxes/jsonc.tmLanguage.json"
}
],
"commands": [
{
"command": "sync-env.activateWatchers",
"title": "Activate watchers"
},
{
"command": "sync-env.deactivateWatchers",
"title": "Deactivate watchers"
}
],
"snippets": [
{
"path": "./snippets/basalt.code-snippets"
},
{
"language": "editorconfig",
"path": "./snippets/editorconfig.code-snippets"
},
{
"language": "json",
"path": "./snippets/eslint.code-snippets"
},
{
"language": "json",
"path": "./snippets/prettier.code-snippets"
},
{
"language": "json",
"path": "./snippets/stylelint.code-snippets"
}
],
"keybindings": [
{
"command": "vscgettext.moveToNextUntranslated",
"key": "alt+n",
"when": "editorTextFocus && resourceLangId == po"
},
{
"command": "vscgettext.moveToPreviousUntranslated",
"key": "alt+shift+n",
"when": "editorTextFocus && resourceLangId == po"
}
],
"configuration": {
"title": "SyncEnv Settings",
"properties": {
"sync-env.envSource": {
"type": "string",
"default": ".env",
"description": "Specifies which file is the Source file."
},
"sync-env.envDestination": {
"type": [
"string",
"null",
"array"
],
"default": [
".env.example"
],
"description": "Specifies the Destination file/files."
}
}
}
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.29",
"@types/vscode": "1.100.0",
"typescript": "^5.8.3",
"ovsx": "^0.10.3",
"@vscode/vsce": "^3.4.2",
"@hyperupcall/scripts-nodejs": "0.5.0"
},
"markdownlint-cli2": {
"extends": "./node_modules/@hyperupcall/markdownlint-config/.markdownlint.json"
},
"prettier": "@hyperupcall/scripts-nodejs/config-prettier.js",
"private": true
}