UNPKG

sprotty-vscode-webview

Version:

Integration of Sprotty in a VS Code extensions (WebView part)

44 lines (43 loc) 1.1 kB
{ "name": "sprotty-vscode-webview", "version": "1.1.0", "description": "Integration of Sprotty in a VS Code extensions (WebView part)", "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)", "keywords": [ "vscode", "graph", "diagram", "layout", "sprotty" ], "homepage": "https://sprotty.org/", "bugs": "https://github.com/eclipse/sprotty-vscode/issues", "author": { "name": "Eclipse Sprotty" }, "repository": { "type": "git", "url": "https://github.com/eclipse/sprotty-vscode.git", "directory": "packages/sprotty-vscode-webview" }, "files": [ "lib", "src", "css" ], "main": "lib/index", "types": "lib/index", "dependencies": { "sprotty": "^1.0.0", "sprotty-vscode-protocol": "^1.1.0", "vscode-messenger-webview": "^0.5.1", "vscode-uri": "^3.1.0" }, "scripts": { "prepare": "yarn run clean && yarn run build", "clean": "shx rm -fr lib", "build": "tsc && yarn run lint", "watch": "tsc -w", "lint": "eslint -c ../../configs/.eslintrc.js \"src/**/!(*.spec.ts*)\"" } }