-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
99 lines (99 loc) · 3.13 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "chemiscope",
"version": "0.8.3",
"description": "An interactive structure/property explorer for materials and molecules",
"author": "Guillaume Fraux <[email protected]>",
"license": "BSD-3-Clause",
"main": "dist/chemiscope.min.js",
"types": "dist/chemiscope.d.ts",
"engines": {
"npm": ">=9",
"node": ">=18"
},
"files": [
"dist/chemiscope.d.ts",
"dist/chemiscope.min.js",
"dist/chemiscope.min.js.LICENSE.txt",
"dist/molecule-viewer.d.ts",
"dist/molecule-viewer.min.js",
"dist/molecule-viewer.min.js.LICENSE.txt",
"src",
"webpack.config.ts",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lab-cosmo/chemiscope.git"
},
"scripts": {
"test": "eslint src python/jupyter/src && prettier --check src python/jupyter/src",
"build": "rimraf dist && webpack --mode production --config webpack.config.ts && npm run merge-dts",
"build:nbextension": "webpack --mode production --config python/webpack.config.nbextension.ts",
"build:labextension": "npm run build && jupyter labextension build .",
"download-examples": "ts-node ./utils/download-examples.ts",
"api-docs": "typedoc",
"start": "npm run download-examples && webpack serve --mode development --static ./app",
"chemiscope-dts": "dts-bundle-generator -o dist/chemiscope.d.ts dist/src/index.d.ts",
"molecule-viewer-dts": "dts-bundle-generator -o dist/molecule-viewer.d.ts dist/src/structure/viewer.d.ts",
"merge-dts": "npm run chemiscope-dts && npm run molecule-viewer-dts",
"prepublishOnly": "npm run build",
"pretty": "prettier --write src"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
"@jupyterlab/builder": "^4",
"@popperjs/core": "^2.11.2",
"@types/jquery": "^3.5",
"@types/markdown-it": "^14",
"@types/node": "^22",
"@types/pako": "^2",
"@types/plotly.js": "^2.12",
"@types/tmp": "^0.2.1",
"3dmol": "2.4.2",
"assert": "^2",
"bootstrap": "5.2.3",
"bubleify": "^2.0",
"buffer": "^6",
"construct-style-sheets-polyfill": "^3.1",
"css-loader": "^7",
"color-parse": "^1",
"dts-bundle-generator": "^9",
"eslint": "^9.12",
"eslint-config-prettier": "^9",
"ify-loader": "^1.1",
"jquery": "^3.6",
"less": "^4.1",
"less-loader": "^12",
"markdown-it": "^14",
"node-loader": "^2",
"pako": "^2",
"plausible-tracker": "^0.3",
"plotly.js": "2.35.2",
"prettier": "3.3.3",
"raw-loader": "^4",
"rimraf": "^6",
"style-loader": "^4",
"tmp": "^0.2",
"ts-loader": "^9",
"ts-node": "^10",
"typedoc": "^0.26",
"typescript": "^5.6",
"typescript-eslint": "^8.8",
"webpack": "^5.76",
"webpack-cli": "^5",
"webpack-dev-server": "^5"
},
"dependencies": {},
"jupyterlab": {
"extension": "python/jupyter/src/labextension.ts",
"webpackConfig": "python/webpack.config.labextension.js",
"outputDir": "python/jupyter/labextension",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}