Skip to content

Commit 72f667f

Browse files
authored
Create package-new.json
1 parent 6efac74 commit 72f667f

File tree

1 file changed

+121
-0
lines changed

1 file changed

+121
-0
lines changed

package-new.json

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
{
2+
"name": "version-identifier",
3+
"displayName": "Versioning Identifier",
4+
"description": "Highlight the Liquid versioning that applies at any point within a Markdown file.",
5+
"icon": "images/versioning-identifier-logo-128px.png",
6+
"version": "1.0.1",
7+
"publisher": "AlistairChristie",
8+
"license": "See the LICENSE file",
9+
"keywords": [
10+
"versioning",
11+
"liquid",
12+
"markdown",
13+
"tags",
14+
"github"
15+
],
16+
"repository": {
17+
"type": "git",
18+
"url": "https://github.com/docs/version-identifier.git"
19+
},
20+
"engines": {
21+
"vscode": "^1.85.0"
22+
},
23+
"categories": [
24+
"Other"
25+
],
26+
"activationEvents": [],
27+
"main": "./dist/extension.js",
28+
"contributes": {
29+
"commands": [
30+
{
31+
"command": "version-identifier.runExtensionModal",
32+
"title": "Versioning identification (Modal)"
33+
},
34+
{
35+
"command": "version-identifier.runExtensionToast",
36+
"title": "Versioning identification (Toast)"
37+
}
38+
],
39+
"keybindings": [
40+
{
41+
"command": "version-identifier.runExtensionToast",
42+
"key": "ctrl+cmd+v",
43+
"mac": "ctrl+cmd+v",
44+
"when": "editorTextFocus"
45+
},
46+
{
47+
"command": "version-identifier.runExtensionModal",
48+
"key": "shift+ctrl+cmd+v",
49+
"mac": "shift+ctrl+cmd+v",
50+
"when": "editorTextFocus"
51+
},
52+
{
53+
"key": "escape",
54+
"command": "version-identifier.removeDecorations",
55+
"when": "editorTextFocus"
56+
}
57+
],
58+
"configuration": {
59+
"type": "object",
60+
"title": "Versioning Extension Configuration",
61+
"properties": {
62+
"version-identifier.colorPairs": {
63+
"type": "array",
64+
"default": [
65+
{
66+
"backgroundColor": "darkred",
67+
"color": "white"
68+
},
69+
{
70+
"backgroundColor": "darkblue",
71+
"color": "yellow"
72+
},
73+
{
74+
"backgroundColor": "green",
75+
"color": "black"
76+
}
77+
],
78+
"description": "Color pairs",
79+
"items": {
80+
"type": "object",
81+
"properties": {
82+
"backgroundColor": {
83+
"type": "string"
84+
},
85+
"color": {
86+
"type": "string"
87+
}
88+
}
89+
}
90+
}
91+
}
92+
}
93+
},
94+
"scripts": {
95+
"vscode:prepublish": "npm run package",
96+
"compile": "webpack",
97+
"watch": "webpack --watch",
98+
"package": "webpack --mode production --devtool hidden-source-map",
99+
"compile-tests": "tsc -p . --outDir out",
100+
"watch-tests": "tsc -p . -w --outDir out",
101+
"pretest": "npm run compile-tests && npm run compile && npm run lint",
102+
"lint": "eslint src --ext ts",
103+
"test": "vscode-test"
104+
},
105+
"devDependencies": {
106+
"@types/mocha": "^10.0.6",
107+
"@types/node": "18.x",
108+
"@types/vscode": "^1.85.0",
109+
"@typescript-eslint/eslint-plugin": "^6.13.1",
110+
"@typescript-eslint/parser": "^6.13.1",
111+
"@vscode/test-cli": "^0.0.4",
112+
"@vscode/test-electron": "^2.3.8",
113+
"eslint": "^8.54.0",
114+
"ts-loader": "^9.5.1",
115+
"typescript": "^5.3.2",
116+
"webpack": "^5.89.0",
117+
"webpack-cli": "^5.1.4"
118+
},
119+
"dependencies": {
120+
}
121+
}

0 commit comments

Comments
 (0)