-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 KB
/
package.json
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
{
"icon": "images/icon.png",
"name": "colored-regions",
"displayName": "Colored Regions",
"description": "This package provides a simple way of colorizing regions.",
"version": "0.0.6",
"publisher": "mihelcic",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension",
"keywords": [
"regions",
"color"
],
"contributes": {
"configuration": {
"title": "Colored Regions",
"properties": {
"coloredRegions.namedColors": {
"type": "object",
"default": {
"imports": "#2563eb12",
"main": "#e11d4812"
},
"description": "You can define and use named colors instead of typing their rgb/rgba/hex values",
"scope": "window"
},
"coloredRegions.colorRange": {
"type": "array",
"default": ["#65a30d12", "#0891b212", "#db277712", "#ca8a0412", "#dc262612", "#7c3aed12"],
"description": "You can omit color declaration - in this case #region will take the next color from this array",
"scope": "window"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jmihelcic/colored-regions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jmihelcic/colored-regions.git"
},
"homepage": "https://github.com/jmihelcic/colored-regions/blob/master/README.md"
}