-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
99 lines (99 loc) · 3.19 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vscode-crosshair",
"displayName": "Editor Crosshair",
"description": "Displays both a horizontal and vertical ruler at the cursor position",
"version": "0.5.0",
"publisher": "bitlang",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"icon": "images/crosshair.png",
"repository": {
"type": "git",
"url": "https://github.com/spgennard/vscode_crosshair"
},
"license": "MIT",
"contributes": {
"configuration": {
"properties": {
"crosshair.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable the crosshair extension"
},
"crosshair.refreshRate": {
"type": "number",
"default": 250,
"description": "Crosshair refresh rate in ms"
},
"crosshair.size": {
"type": "number",
"default": 10,
"description": "Size of crosshair"
},
"crosshair.borderColor": {
"type": "string",
"default": "#00FF00",
"description": "Change the border color. (Ex: 'red', '#FFF' #FFFFFFF, 'RGB(255,255,255)','RGB(255, 255, 255. 0.5) )"
},
"crosshair.borderWidth": {
"type": "string",
"default": "0.1px"
},
"crosshair.borderStyle": {
"type": "string",
"enum": [
"solid",
"dashed",
"inset",
"double",
"groove",
"outset",
"ridge"
],
"default": "solid"
},
"crosshair.autoTabToSpace": {
"type": "boolean",
"default": true,
"description": "Automatically convert tabs to spaces"
}
}
},
"configurationDefaults": {
"editor.useTabStops": false,
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.trimAutoWhitespace": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/minimatch": "^5.1.2",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.6",
"@types/vscode": "^1.94.0",
"depcheck": "^1.4.7",
"eslint": "^9.12.0",
"glob": "^11.0.0",
"mocha": "^10.7.3",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"vsce": "^2.15.0"
}
}