-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 3.57 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "vscode-jmbg",
"displayName": "jmbg",
"icon": "images/icon.png",
"description": "JMBG tools: validate and generate random JMBG",
"repository": {
"type": "git",
"url": "https://github.com/borko-rajkovic/vscode-jmbg"
},
"bugs": {
"url": "https://github.com/borko-rajkovic/vscode-jmbg/issues"
},
"publisher": "borko-rajkovic",
"version": "0.0.8",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vscode-jmbg.validate",
"onCommand:vscode-jmbg.generate-random",
"onView:vscode-jmbg-sidebar-validation",
"onView:vscode-jmbg-sidebar-random-generator"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"properties": {
"vscode-jmbg.borderColor": {
"type": [
"string"
],
"default": "#65EAB9",
"description": "Change the border color. (Ex: 'red', '#FFF' #FFFFFFF, 'RGB(255,255,255)','RGB(255, 255, 255. 0.5) )"
},
"vscode-jmbg.borderWidth": {
"type": [
"string"
],
"default": "2px"
},
"vscode-jmbg.borderStyle": {
"type": [
"string"
],
"enum": [
"solid",
"dashed",
"inset",
"double",
"groove",
"outset",
"ridge"
],
"default": "solid"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "vscode-jmbg-sidebar-view",
"title": "JMBG",
"icon": "images/icon-sidebar.png"
}
]
},
"views": {
"vscode-jmbg-sidebar-view": [
{
"type": "webview",
"id": "vscode-jmbg-sidebar-validation",
"name": "Validate and decode",
"contextualTitle": "JMBG Validation",
"visibility": "visible"
},
{
"type": "webview",
"id": "vscode-jmbg-sidebar-random-generator",
"name": "Generate random",
"contextualTitle": "JMBG Random Generator",
"visibility": "collapsed"
}
]
},
"commands": [
{
"command": "vscode-jmbg.validate",
"category": "JMBG",
"title": "Validate"
},
{
"command": "vscode-jmbg.generate-random",
"category": "JMBG",
"title": "Generate random"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --config ./build/node-extension.webpack.config.js",
"watch": "webpack --watch --config ./build/node-extension.webpack.config.js",
"package": "webpack --mode production --devtool hidden-source-map --config ./build/node-extension.webpack.config.js",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.92.0",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"eslint": "^9.9.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"glob": "^11.0.0",
"mocha": "^10.7.3",
"typescript": "^5.5.4",
"vscode-test": "^1.6.1",
"ts-loader": "^9.5.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ts-jmbg": "^1.0.3"
}
}