Skip to content

Commit ee8318a

Browse files
jcoadymwcraig
authored andcommitted
Update for websocket support.
Updated to support websockets on remote host.
1 parent b5c9b33 commit ee8318a

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

labextension/vpython/package.json

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vpython",
3-
"version": "0.4.3",
3+
"version": "0.4.6",
44
"description": "VPython extension for Jupyterlab",
55
"keywords": [
66
"jupyter",
@@ -14,17 +14,23 @@
1414
"license": "BSD-3-Clause",
1515
"author": "John Coady",
1616
"files": [
17-
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,otf}",
18-
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
17+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,otf,ico}",
18+
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf,otf,ico}",
19+
"vpython_data/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf,otf,ico}",
20+
"vpython_libraries/*"
1921
],
2022
"main": "lib/index.js",
2123
"typings": "lib/index.d.ts",
24+
"style": "style/index.css",
25+
"repository": {
26+
"type": "git",
27+
"url": ""
28+
},
2229
"scripts": {
23-
"build": "npm run build:src",
24-
"build:src": "tsc",
25-
"clean": "rimraf tsconfig.tsbuildinfo",
26-
"prepublish": "npm run clean && npm run build",
27-
"jpinstall": "jupyter labextension install ."
30+
"build": "tsc",
31+
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
32+
"prepare": "npm run clean && npm run build",
33+
"watch": "tsc -w"
2834
},
2935
"dependencies": {
3036
"@jupyterlab/application": "^1.1.3",
@@ -42,6 +48,9 @@
4248
"rimraf": "^2.6.1",
4349
"typescript": "^3.6.3"
4450
},
51+
"sideEffects": [
52+
"style/*.css"
53+
],
4554
"jupyterlab": {
4655
"extension": true
4756
}

0 commit comments

Comments
 (0)