-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.9 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.9 KB
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
{
"name": "dynamictemplater",
"displayName": "Dynamic Templater",
"description": "Dinamic Templates Creator",
"publisher": "Naceja",
"license": "MIT",
"version": "1.2.5",
"author": {
"name": "Eduardo Toriani (Naceja)",
"email": "edutoriani13@gmail.com",
"url": "https://github.com/MrNaceja"
},
"keywords": [
"Template",
"Templater",
"Templates",
"Variável",
"Dinâmico",
"Dinamic",
"Placeholder",
"Snippet",
"Estrutura de Controle",
"Função",
"Render",
"Importação",
"Comentário",
"Criação de arquivo"
],
"icon": "static/icon.png",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Snippets",
"Themes",
"Keymaps",
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"repository": {
"url": "https://github.com/MrNaceja/dynamic_templater"
},
"contributes": {
"commands": [
{
"command": "dynamictemplater.newTemplate",
"title": "new Template",
"category": "Dynamic Templater"
},
{
"command": "dynamictemplater.newFile",
"title": "New File Based on Template",
"category": "Dynamic Templater",
"enablement": "explorerViewletFocus && explorerViewletVisible"
},
{
"command": "dynamictemplater.openTemplatesDirectory",
"title": "Open Templates Directory",
"category": "Dynamic Templater"
}
],
"menus": {
"explorer/context": [
{
"command": "dynamictemplater.newFile",
"group": "navigation"
}
]
},
"configuration": {
"title": "Dynamic Templater",
"properties": {
"dynamicTemplater.author.name": {
"type": "string",
"default": "Author"
},
"dynamicTemplater.author.email": {
"type": "string",
"default": "author@email.com"
},
"dynamicTemplater.customOptions": {
"type": "object",
"default": {
"customValue": "Wowwww is a custom value parameter :)"
},
"description": "Defines your custom options sended to template render as customOptions in options parameter."
},
"dynamicTemplater.templatesDir": {
"type": "string",
"default": "",
"description": "A templates custom directory"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/node": "18.x",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"typescript": "^5.3.3"
}
}