Files
S.Gromov ced06e1ca8 refactor: переименовать расширение в templateFileGenerator
- идентификатор расширения переименован с templateForge на templateFileGenerator
- обновлены команды, настройки и конфигурация
- обновлены ссылки на репозиторий
- версия обновлена до 1.0.2
- обновлены локализации (en, ru)
- обновлена документация (README, CHANGELOG)
2026-04-02 22:35:09 +03:00

145 lines
4.2 KiB
JSON

{
"name": "vscode-templateFileGenerator",
"displayName": "Template File Generator | gromlab",
"description": "Generate files and folders from templates with variable substitution and case modifiers. Syntax highlighting and autocomplete for template variables.",
"version": "1.0.2",
"publisher": "gromlab",
"author": "Sergey Gromov",
"scripts": {
"build-app": "npm run build && npm run package-vsce",
"compile": "webpack",
"watch": "webpack --watch",
"build": "webpack --mode production --devtool hidden-source-map",
"package-vsce": "vsce package",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"categories": [
"Snippets",
"Other"
],
"keywords": [
"template",
"scaffold",
"generator",
"boilerplate",
"component",
"file generator",
"project structure",
"code generation",
"snippets"
],
"icon": "logo.png",
"homepage": "https://gromlab.ru/gromov/vscode-template-file-generator",
"repository": {
"type": "git",
"url": "https://gromlab.ru/gromov/vscode-template-file-generator.git"
},
"bugs": {
"url": "https://gromlab.ru/gromov/vscode-template-file-generator/issues"
},
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "templateFileGenerator.createFromTemplate",
"title": "%templateFileGenerator.createFromTemplate.title%"
},
{
"command": "templateFileGenerator.configure",
"title": "%templateFileGenerator.configure.title%"
}
],
"menus": {
"explorer/context": [
{
"command": "templateFileGenerator.createFromTemplate",
"group": "navigation@10"
}
]
},
"configuration": {
"title": "Template Forge",
"properties": {
"templateFileGenerator.templatesPath": {
"type": "string",
"default": ".templates",
"description": "%templateFileGenerator.config.templatesPath.description%",
"markdownDescription": "%templateFileGenerator.config.templatesPath.description%",
"scope": "application"
},
"templateFileGenerator.overwriteFiles": {
"type": "boolean",
"default": false,
"description": "%templateFileGenerator.config.overwriteFiles.description%",
"markdownDescription": "%templateFileGenerator.config.overwriteFiles.description%",
"scope": "application"
},
"templateFileGenerator.inputMode": {
"type": "string",
"enum": [
"webview",
"inputBox"
],
"default": "webview",
"description": "%templateFileGenerator.config.inputMode.description%",
"markdownDescription": "%templateFileGenerator.config.inputMode.description%",
"scope": "application"
},
"templateFileGenerator.language": {
"type": "string",
"enum": [
"ru",
"en"
],
"default": "en",
"description": "%templateFileGenerator.config.language.description%",
"markdownDescription": "%templateFileGenerator.config.language.description%",
"scope": "application"
}
}
},
"semanticTokenColors": [
{
"token": "bracket",
"foreground": "#FFA500"
},
{
"token": "variable",
"foreground": "#4EC900"
},
{
"token": "modifier",
"foreground": "#0074D9"
}
]
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.6.2",
"eslint": "^9.25.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.7",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@gromlab/create": "^0.2.0"
}
}