-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.92 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.92 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
{
"name": "env-spec-language",
"displayName": "@env-spec (.env) language support - VSCode/OVSX extension",
"description": "Adds syntax highlighting and additional tooling for @env-spec enabled .env files",
"icon": "images/marketplace-icon.png",
"galleryBanner": {
"color": "#4F0049",
"theme": "dark"
},
"version": "0.1.3",
"publisher": "varlock",
"author": "dmno-dev",
"license": "MIT",
"homepage": "https://varlock.dev/env-spec",
"repository": {
"type": "git",
"url": "https://github.com/dmno-dev/varlock.git",
"directory": "packages/vscode-plugin"
},
"engines": {
"vscode": "^1.99.0"
},
"main": "./dist/extension.js",
"activationEvents": [],
"contributes": {
"languages": [
{
"id": "env-spec",
"aliases": [
"@env-spec (.env)",
"@env-spec",
"env-spec",
"dotenv",
".env"
],
"filenamePatterns": [
".env",
".env.*"
],
"configuration": "./language/language-configuration.json",
"icon": {
"light": "images/file-icon.png",
"dark": "images/file-icon.png"
}
}
],
"grammars": [
{
"language": "env-spec",
"scopeName": "source.env-spec",
"path": "./language/env-spec.tmLanguage.json"
}
],
"commands": [
{
"command": "env-spec.toggleLineComment",
"title": "Toggle line comment (@env-spec)"
}
],
"keybindings": [
{
"command": "env-spec.toggleLineComment",
"key": "ctrl+/",
"mac": "cmd+/",
"when": "editorTextFocus && editorLangId == env-spec"
}
]
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"env-spec",
"dotenv",
"env",
".env",
"environment variables",
"config"
],
"pricing": "Free",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"test:grammar": "vscode-tmgrammar-test -g ./language/env-spec.tmLanguage.json ./test/grammar.test.txt",
"test:ci": "vitest --run && bun run test:grammar",
"package": "bun run build && vsce package -o env-spec-language.vsix --no-dependencies",
"publish:vsce": "vsce publish -i env-spec-language.vsix",
"publish:ovsx": "ovsx publish -i env-spec-language.vsix",
"publish": "bun run package && bun run publish:vsce && bun run publish:ovsx",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "catalog:",
"@types/vscode": "^1.99.0",
"@vscode/vsce": "^3.6.2",
"ovsx": "^0.10.6",
"tsup": "catalog:",
"vitest": "catalog:",
"vscode-tmgrammar-test": "^0.1.3"
},
"vsce": {
"baseImagesUrl": "https://raw.githubusercontent.com/dmno-dev/varlock/HEAD/packages/vscode-plugin",
"baseContentUrl": "https://raw.githubusercontent.com/dmno-dev/varlock/HEAD/packages/vscode-plugin",
"dependencies": true,
"yarn": false
}
}