-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.61 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
{
"name": "code-boilerplate",
"displayName": "Code Generator",
"description": "A vscode extension that generates a sample HelloWorld program based on the language of the file.",
"version": "1.0.2",
"publisher": "HarryHopkinson",
"engines": {
"vscode": "^1.7.0"
},
"icon": "images/icon.jpg",
"repository": {
"type": "git",
"url": "https://github.com/Harry-Hopkinson/code-boilerplate.git"
},
"categories": [
"Other",
"Programming Languages",
"Snippets",
"Extension Packs",
"Testing",
"Language Packs"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "code-boilerplate.CodeBoilerplate",
"title": "Code Boilerplate"
}
],
"configuration": {
"type": "object",
"title": "code-boilerplate",
"properties": {
"code-boilerplate.notice": {
"type": "boolean",
"default": true,
"description": "Show notice",
"scope": "window"
}
}
}
},
"scripts": {
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"build": "webpack --mode production --devtool hidden-source-map",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"devDependencies": {
"@types/node": "18.13.0",
"@types/vscode": "1.75.1",
"prettier": "2.8.3",
"ts-loader": "9.4.2",
"typescript": "4.9.5",
"vscode": "1.1.37",
"watch": "1.0.2",
"webpack": "5.75.0",
"webpack-cli": "5.0.1"
}
}