feature: First build

This commit is contained in:
Keith Solomon
2026-01-26 08:24:46 -06:00
parent 27511d8ec0
commit d6df4c18a2
6 changed files with 240 additions and 10 deletions

53
package.json Normal file
View File

@@ -0,0 +1,53 @@
{
"name": "vdi-acf-block-scaffold",
"displayName": "VDI ACF Block Scaffold",
"description": "Scaffold WordPress ACF blocks from a template.",
"version": "0.0.1",
"publisher": "vdi",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vdi-acf-block-scaffold.createBlock"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vdi-acf-block-scaffold.createBlock",
"title": "VDI: Create ACF Block"
}
],
"configuration": {
"title": "VDI ACF Block Scaffold",
"properties": {
"vdiAcfBlockScaffold.parentDirectory": {
"type": "string",
"default": "views/blocks",
"description": "Workspace-relative parent directory where new blocks are created."
}
}
},
"keybindings": [
{
"command": "vdi-acf-block-scaffold.createBlock",
"key": "ctrl+alt+b",
"mac": "cmd+alt+b",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/vscode": "^1.80.0",
"typescript": "^5.4.0"
}
}