-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.45 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
{
"name": "codebot",
"displayName": "Codebot - Code generator by templates",
"description": "This extension creates automated codes based on custom created templates.",
"version": "1.0.0",
"icon": "assets/codebot.png",
"repository": {
"type": "git",
"url": "https://github.com/douglasgomes98/codebot"
},
"publisher": "douglasgomes98",
"license": "MIT",
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:codebot.createComponent",
"onCommand:codebot.updateComponent"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "codebot.createComponent",
"title": "🤖 Create Component"
},
{
"command": "codebot.updateComponent",
"title": "🤖 Update Component"
}
],
"menus": {
"explorer/context": [
{
"command": "codebot.createComponent",
"group": "1_modification",
"when": "explorerResourceIsFolder"
},
{
"command": "codebot.updateComponent",
"group": "1_modification",
"when": "explorerResourceIsFolder"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"build": "vsce package",
"lint": "eslint src --fix --ext ts src && prettier --write src",
"lint:check": "eslint src --ext ts src && prettier --check src",
"test": "echo \"test script not implemented\" && exit 0",
"semantic-release": "semantic-release"
},
"engines": {
"vscode": "^1.74.0"
},
"dependencies": {
"fs": "^0.0.2",
"handlebars": "^4.7.7"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/node": "18.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"git-commit-msg-linter": "^4.5.0",
"prettier": "^2.8.1",
"semantic-release": "^19.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"vsce": "^2.15.0",
"vscode": "^1.1.37",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}