-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.21 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
{
"name": "react-on-the-fly",
"displayName": "React On The Fly",
"description": "Turn boilerplate into a new component and auto-import it on the fly in React.",
"version": "0.0.6",
"publisher": "razgraf",
"repository": {
"type": "git",
"url": "https://github.com/razgraf/react-on-the-fly"
},
"bugs": {
"url": "https://github.com/razgraf/react-on-the-fly/issues"
},
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:react-on-the-fly.rotft",
"onCommand:react-on-the-fly.rotfd",
"onCommand:react-on-the-fly.rotfdi",
"onCommand:react-on-the-fly.rotfti"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "react-on-the-fly.rotfd",
"title": "Create default component, on the fly"
},
{
"command": "react-on-the-fly.rotft",
"title": "Create component using your template, on the fly"
},
{
"command": "react-on-the-fly.rotfdi",
"title": "Create and import default component, on the fly",
"when": "editorFocus == true"
},
{
"command": "react-on-the-fly.rotfti",
"title": "Create and import component using your template, on the fly",
"when": "editorFocus == true"
}
],
"menus": {
"explorer/context": [
{
"command": "react-on-the-fly.rotfd",
"group": "react-on-the-fly@1"
},
{
"command": "react-on-the-fly.rotft",
"group": "react-on-the-fly@2"
}
],
"editor/context": [
{
"command": "react-on-the-fly.rotfdi",
"group": "react-on-the-fly@1"
},
{
"command": "react-on-the-fly.rotfti",
"group": "react-on-the-fly@2"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.3.2"
},
"dependencies": {
"handlebars": "^4.7.7"
},
"icon": "images/logo.png"
}