-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.91 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": "components-boilerplate",
"displayName": "Components Boilerplate",
"description": "Use templates to generate a fully customizable boilerplate code, files or folders .",
"version": "1.2.3",
"publisher": "danzo7",
"engines": {
"vscode": "^1.63.1"
},
"icon": "assets/icon.png",
"categories": [
"Snippets",
"Formatters"
],
"keywords": [
"generate files",
"generate widget",
"react Js component",
"flutter component",
"generate boilerplate files",
"code generator",
"files generator",
"customizable boilerplate code generator"
],
"activationEvents": [
"onCommand:extension.generate-boilerplate"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Components boilerplate",
"properties": {
"boilerplate.component.isWrapped": {
"type": "boolean",
"default": false,
"markdownDescription": "Disable this if you don't want to wrap your component. \n * When enabled generated components will wrapped in a directory with the first variant as a name (deprecated)."
}
}
},
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "extension.generate-boilerplate",
"group": "Boilerplate"
}
]
},
"commands": [
{
"command": "extension.generate-boilerplate",
"title": "Generate new component...",
"args": "component"
}
]
},
"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/glob": "^7.2.0",
"@types/mocha": "^8.2.3",
"@types/node": "^12.20.38",
"@types/vscode": "^1.63.1",
"@types/yargs": "^16.0.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"mocha": "^10.0.0",
"ts-loader": "^8.3.0",
"typescript": "^4.5.4",
"vscode-test": "^1.6.1",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@shipengine/capitalization": "^1.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Danzo7/vscode-components-boilerplate.git"
},
"author": "danzo7",
"license": "MIT",
"bugs": {
"url": "https://github.com/Danzo7/vscode-components-boilerplate/issues"
},
"homepage": "https://github.com/Danzo7/vscode-components-boilerplate",
"typings": "src"
}