-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 3.13 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
{
"name": "markdown-table-rainbow",
"icon": "assets/icon.png",
"displayName": "markdown-table-rainbow",
"description": "%markdownTableRainbow.description%",
"publisher": "yoshi389111",
"version": "1.2.0",
"license": "MIT",
"l10n": "./l10n",
"repository": {
"type": "git",
"url": "https://github.com/yoshi389111/vscode-md-table-rainbow"
},
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown",
"onLanguage:mdx"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Markdown Table Rainbow",
"properties": {
"markdownTableRainbow.updateDelay": {
"type": "number",
"default": 100,
"description": "%markdownTableRainbow.updateDelay%"
},
"markdownTableRainbow.colors": {
"type": "array",
"default": [
"rgba(79,236,236,0.1)",
"rgba(255,255,63,0.1)",
"rgba(127,255,127,0.1)",
"rgba(255,127,255,0.1)"
],
"description": "%markdownTableRainbow.colors%"
},
"markdownTableRainbow.cursorColorEnabled": {
"type": "boolean",
"default": true,
"description": "%markdownTableRainbow.cursorColorEnabled%"
},
"markdownTableRainbow.singleTableMode": {
"type": "boolean",
"default": false,
"description": "%markdownTableRainbow.singleTableMode%"
},
"markdownTableRainbow.cursorColor": {
"type": "string",
"default": "rgba(100,50,180,0.8)",
"description": "%markdownTableRainbow.cursorColor%",
"pattern": "^(#[0-9a-fA-F]{6})|(rgb\\(\\s*(25[0-5]|2[0-4]\\d|1\\d{2}|\\d{1,2})\\s*,\\s*(25[0-5]|2[0-4]\\d|1\\d{2}|\\d{1,2})\\s*,\\s*(25[0-5]|2[0-4]\\d|1\\d{2}|\\d{1,2})\\s*\\))|(rgba\\(\\s*(25[0-5]|2[0-4]\\d|1\\d{2}|\\d{1,2})\\s*,\\s*(25[0-5]|2[0-4]\\d|1\\d{2}|\\d{1,2})\\s*,\\s*(25[0-5]|2[0-4]\\d|1\\d{2}|\\d{1,2})\\s*,\\s*[01](\\.\\d+)?\\s*\\))$",
"patternErrorMessage": "%markdownTableRainbow.regexp.patternErrorMessage%"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.mjs",
"package": "npm run check-types && npm run lint && node esbuild.mjs --production",
"check-types": "tsc --noEmit",
"lint": "eslint src"
},
"devDependencies": {
"@types/node": "20.x",
"@types/vscode": "^1.76.0",
"@vscode/l10n": "^0.0.13",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"typescript": "^4.9.5",
"typescript-eslint": "^8.65.0"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}