-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "vipster-js-widget",
"version": "0.1.5",
"description": "Jupyter widget for Vipster",
"author": "Sebastian Gsänger",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/sgsaenger/vipster"
},
"bugs": "https://github.com/sgsaenger/vipster/issues",
"homepage": "https://sgsaenger.github.io/vipster",
"keywords": [
"chemistry",
"molecular graphics",
"molecular structure",
"visualization",
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"ipython",
"ipywidgets"
],
"scripts": {
"build": "npm install && rollup -c && cp src/lab-plugin.js dist",
"update": "npm run build && cp dist/index.js vipsterview/static/extension.js",
"clean": "rm -rf dist"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.34.2",
"vipster": "1.19.3"
},
"main": "dist/index.js",
"files": [
"dist/lab-plugin.js"
],
"jupyterlab": {
"extension": "dist/lab-plugin"
}
}