Move small tasks from wishlist to todo, update npm packages Replace #[Auth] attributes with manual auth checks and code quality rule Remove on_jqhtml_ready lifecycle method from framework Complete ACL system with 100-based role indexing and /dev/acl tester WIP: ACL system implementation with debug instrumentation Convert rsx:check JS linting to RPC socket server Clean up docs and fix $id→$sid in man pages, remove SSR/FPC feature Reorganize wishlists: priority order, mark sublayouts complete, add email Update model_fetch docs: mark MVP complete, fix enum docs, reorganize Comprehensive documentation overhaul: clarity, compression, and critical rules Convert Contacts/Projects CRUD to Model.fetch() and add fetch_or_null() Add JS ORM relationship lazy-loading and fetch array handling Add JS ORM relationship fetching and CRUD documentation Fix ORM hydration and add IDE resolution for Base_* model stubs Rename Json_Tree_Component to JS_Tree_Debug_Component and move to framework Enhance JS ORM infrastructure and add Json_Tree class name badges 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
108 lines
2.4 KiB
JSON
108 lines
2.4 KiB
JSON
{
|
|
"name": "@jqhtml/vscode-extension",
|
|
"displayName": "JQHTML",
|
|
"description": "Syntax highlighting and language support for JQHTML template files",
|
|
"version": "2.2.220",
|
|
"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
|
|
}
|