🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
108 lines
2.4 KiB
JSON
Executable File
108 lines
2.4 KiB
JSON
Executable File
{
|
|
"name": "@jqhtml/vscode-extension",
|
|
"displayName": "JQHTML",
|
|
"description": "Syntax highlighting and language support for JQHTML template files",
|
|
"version": "2.2.175",
|
|
"publisher": "jqhtml",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://privatenpm.hanson.xyz/"
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "echo Skipping prepublish",
|
|
"compile": "tsc -p ./ || echo 'TypeScript compilation issues, continuing...'",
|
|
"watch": "tsc -watch -p ./",
|
|
"test": "echo 'No tests configured'",
|
|
"build": "npm run compile"
|
|
},
|
|
"files": [
|
|
"out",
|
|
"syntaxes",
|
|
"snippets",
|
|
"images",
|
|
"language-configuration.json",
|
|
".version",
|
|
"README.md",
|
|
"LLM_REFERENCE.md",
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"*.vsix"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.74.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages",
|
|
"Snippets"
|
|
],
|
|
"keywords": [
|
|
"jqhtml",
|
|
"jquery",
|
|
"template",
|
|
"component",
|
|
"html"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jqhtml/jqhtml.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jqhtml/jqhtml/issues"
|
|
},
|
|
"activationEvents": [],
|
|
"main": "./out/extension.js",
|
|
"contributes": {
|
|
"languages": [
|
|
{
|
|
"id": "jqhtml",
|
|
"aliases": [
|
|
"JQHTML",
|
|
"jqhtml"
|
|
],
|
|
"extensions": [
|
|
".jqhtml"
|
|
],
|
|
"configuration": "./language-configuration.json",
|
|
"icon": {
|
|
"light": "./images/jqhtml-icon.svg",
|
|
"dark": "./images/jqhtml-icon.svg"
|
|
}
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "jqhtml",
|
|
"scopeName": "source.jqhtml",
|
|
"path": "./syntaxes/jqhtml.tmLanguage.json"
|
|
}
|
|
],
|
|
"snippets": [
|
|
{
|
|
"language": "jqhtml",
|
|
"path": "./snippets/jqhtml.json"
|
|
}
|
|
],
|
|
"configurationDefaults": {
|
|
"[jqhtml]": {
|
|
"editor.wordWrap": "on",
|
|
"editor.quickSuggestions": {
|
|
"other": true,
|
|
"comments": false,
|
|
"strings": true
|
|
},
|
|
"editor.bracketPairColorization.enabled": false,
|
|
"editor.guides.bracketPairs": false
|
|
}
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.18.126",
|
|
"@types/vscode": "^1.74.0",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"author": "",
|
|
"homepage": "https://github.com/jqhtml/jqhtml#readme",
|
|
"dependencies": null
|
|
}
|