- Hover provider showing entity information and type - Go-to-definition (F12) for entity references - Basic IFC file validation (ISO-10303-21 header check) - Entity parsing with regex-based detection - Proper CommonJS module system (avoiding ES module issues) This replaces the broken baseline from ifc-developer-tools which had: - Non-functional ES module configuration - Circular dependency issues - Parser crashes - Non-working PositionVisitor Built on Microsoft's LSP example template for a clean, maintainable foundation. Next: Add hierarchical entity dependency tree in hover tooltip."
50 lines
1.9 KiB
JSON
50 lines
1.9 KiB
JSON
{
|
|
"name": "vscode-languageclient",
|
|
"description": "VSCode Language client implementation",
|
|
"version": "9.0.1",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.82.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-languageserver-node.git",
|
|
"directory": "client"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-languageserver-node/issues"
|
|
},
|
|
"enabledApiProposals": [],
|
|
"main": "./lib/node/main.js",
|
|
"browser": {
|
|
"./lib/node/main.js": "./lib/browser/main.js"
|
|
},
|
|
"typings": "./lib/common/api.d.ts",
|
|
"devDependencies": {
|
|
"@types/minimatch": "^3.0.5",
|
|
"@types/semver": "^7.3.10",
|
|
"@types/vscode": "1.82.0",
|
|
"shx": "^0.3.4"
|
|
},
|
|
"dependencies": {
|
|
"minimatch": "^5.1.0",
|
|
"semver": "^7.3.7",
|
|
"vscode-languageserver-protocol": "3.17.5"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/npm/fail",
|
|
"prepack": "npm run all:publish",
|
|
"compile": "node ../build/bin/tsc -b ./tsconfig.json && shx cp src/node/terminateProcess.sh lib/node/terminateProcess.sh",
|
|
"compile:clean": "git clean -xfd . && npm install && npm run clean && npm run compile",
|
|
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
|
|
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
|
|
"test": "cd ../client-node-tests && npm test && cd ../client",
|
|
"clean": "node ../node_modules/.bin/rimraf lib",
|
|
"all": "npm run clean && npm run compile && npm run lint && npm test",
|
|
"compile:publish": "node ../build/bin/tsc -b ./tsconfig.publish.json && shx cp src/node/terminateProcess.sh lib/node/terminateProcess.sh",
|
|
"all:publish": "git clean -xfd . && npm install && npm run updateVSCodeVersion && npm run compile:publish && npm run lint && cd ../client-node-tests && npm run all:publish && cd ..",
|
|
"preversion": "npm test",
|
|
"updateVSCodeVersion": "node ./bin/updateVSCode.js"
|
|
}
|
|
}
|