Skip to content

Commit 3a47645

Browse files
authored
Merge pull request #3 from docs/hubwriter-patch-2
Create package-new.json
2 parents 6efac74 + 511105a commit 3a47645

File tree

1 file changed

+109
-0
lines changed

1 file changed

+109
-0
lines changed

package-new.json

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
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+
"key": "escape",
42+
"command": "version-identifier.removeDecorations",
43+
"when": "editorTextFocus"
44+
}
45+
],
46+
"configuration": {
47+
"type": "object",
48+
"title": "Versioning Extension Configuration",
49+
"properties": {
50+
"version-identifier.colorPairs": {
51+
"type": "array",
52+
"default": [
53+
{
54+
"backgroundColor": "darkred",
55+
"color": "white"
56+
},
57+
{
58+
"backgroundColor": "darkblue",
59+
"color": "yellow"
60+
},
61+
{
62+
"backgroundColor": "green",
63+
"color": "black"
64+
}
65+
],
66+
"description": "Color pairs",
67+
"items": {
68+
"type": "object",
69+
"properties": {
70+
"backgroundColor": {
71+
"type": "string"
72+
},
73+
"color": {
74+
"type": "string"
75+
}
76+
}
77+
}
78+
}
79+
}
80+
}
81+
},
82+
"scripts": {
83+
"vscode:prepublish": "npm run package",
84+
"compile": "webpack",
85+
"watch": "webpack --watch",
86+
"package": "webpack --mode production --devtool hidden-source-map",
87+
"compile-tests": "tsc -p . --outDir out",
88+
"watch-tests": "tsc -p . -w --outDir out",
89+
"pretest": "npm run compile-tests && npm run compile && npm run lint",
90+
"lint": "eslint src --ext ts",
91+
"test": "vscode-test"
92+
},
93+
"devDependencies": {
94+
"@types/mocha": "^10.0.6",
95+
"@types/node": "18.x",
96+
"@types/vscode": "^1.85.0",
97+
"@typescript-eslint/eslint-plugin": "^6.13.1",
98+
"@typescript-eslint/parser": "^6.13.1",
99+
"@vscode/test-cli": "^0.0.4",
100+
"@vscode/test-electron": "^2.3.8",
101+
"eslint": "^8.54.0",
102+
"ts-loader": "^9.5.1",
103+
"typescript": "^5.3.2",
104+
"webpack": "^5.89.0",
105+
"webpack-cli": "^5.1.4"
106+
},
107+
"dependencies": {
108+
}
109+
}

0 commit comments

Comments
 (0)