-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.24 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "molstar-clj",
"version": "0.3.0",
"description": "A Mol* Widget for Common Lisp Jupyter",
"keywords": [
"molstar",
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"{dist}/**/*.{js,ts,map}",
"css/*.css",
"LICENSE.md"
],
"homepage": "https://github.com/cando-developers/molstar-clj",
"bugs": {
"url": "https://github.com/cando-developers/molstar-clj/issues"
},
"license": "MIT",
"author": {
"name": "Tarn W. Burton",
"email": "twburton@gmail.com"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/cando-developers/molstar-clj"
},
"scripts": {
"build": "sass --no-source-map node_modules/molstar/lib/mol-plugin-ui/skin/light.scss:css/light.css node_modules/molstar/lib/mol-plugin-ui/skin/blue.scss:css/blue.css node_modules/molstar/lib/mol-plugin-ui/skin/dark.scss:css/dark.css && tsc && jupyter-labextension build",
"lab-install": "sbcl --non-interactive --eval \"(asdf:load-system :molstar-clj)\"",
"lint": "eslint . --ext .ts --fix",
"lint-check": "eslint . --ext .ts",
"prepack": "yarn run build"
},
"dependencies": {
"@jupyter-widgets/base": "^6.0.4",
"case": "^1.6.3",
"fp-ts": "^2.16.9",
"fs": "^0.0.1-security",
"molstar": "4.5.0",
"ngl": "2.3.1"
},
"devDependencies": {
"@jupyterlab/application": "^4.0.1",
"@jupyterlab/builder": "^4.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"lint-staged": "^13.0.3",
"sass": "^1.77.8",
"typescript": "^5.1.3"
},
"jupyterlab": {
"extension": "dist/plugin",
"outputDir": "prebuilt",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
},
"lint-staged": {
"*.ts": [
"eslint . --ext .ts --fix"
]
},
"prettier": {
"singleQuote": true
}
}