-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #448 from sedwards2009/side_map
Scroll Map extension
- Loading branch information
Showing
31 changed files
with
748 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
extends: "extraterm" | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Sidebar Scrolling Map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"name": "scrollmap", | ||
"displayName": "Scroll Map", | ||
"description": "Scroll Map", | ||
"author": "Simon Edwards", | ||
"license": "MIT", | ||
"version": "1.0.0", | ||
"type": "module", | ||
"exports": "./dist/ScrollMapExtension.cjs", | ||
"scripts": { | ||
"build": "yarn run build-code && yarn run build-bundle && yarn run lint", | ||
"build-code": "tsc", | ||
"build-bundle": "esbuild build/ScrollMapExtension.js --bundle --outfile=dist/ScrollMapExtension.cjs --platform=node --format=cjs --external:@nodegui/nodegui \"--external:nodegui-plugin-*\"", | ||
"clean": "shx rm -rf build dist", | ||
"lint": "eslint \"src/**/*.ts\"", | ||
"lint-strict": "eslint --max-warnings 1 \"src/**/*.ts\"" | ||
}, | ||
"dependencies": { | ||
"@nodegui/nodegui": "0.70.0", | ||
"gl-matrix": "^3.3.0" | ||
}, | ||
"devDependencies": { | ||
"@extraterm/extraterm-extension-api": "0.15.0", | ||
"esbuild": "^0.15.5", | ||
"eslint": "8.53.0", | ||
"eslint-config-extraterm": "1.0.0", | ||
"eslint-plugin-unicorn": "42.0.0", | ||
"extraterm-timeoutqt": "1.0.0", | ||
"qt-construct": "0.1.0", | ||
"shx": "^0.3.2", | ||
"typescript": "5.2.2" | ||
}, | ||
"contributes": { | ||
"terminalBorderWidgets": [ | ||
{ | ||
"name": "scrollmap", | ||
"border": "east" | ||
} | ||
] | ||
} | ||
} |
Oops, something went wrong.