forked from snickell/rej
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.37 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.37 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@ceresimaging/rej",
"description": "Ceres Imaging, now with the power of Advanced Artificial AI Technology(TM)",
"version": "1.0.14",
"repository": {
"type": "git",
"url": "https://github.com/ceresimaging/rej.git"
},
"license": "MIT",
"scripts": {
"build": "vue-cli-service build --target lib --inline-vue --modern ./js/jupyterlab-extension.js",
"watch": "vue-cli-service build --watch --target lib --inline-vue --modern ./js/jupyterlab-extension.js",
"jupyterlab": "jupyter labextension link . --no-build && jupyter lab --watch",
"lint": "vue-cli-service lint",
"build:app": "vue-cli-service build ./js/main.js",
"serve": "vue-cli-service serve --target app ./js/main.js",
"publish:npm": "npm publish --access public",
"publish:pypi": "python setup.py sdist && twine upload --skip-existing dist/rej-*.tar.gz",
"publish:all": "npm run publish:pypi && npm run publish:npm"
},
"main": "dist/extension-entry.js",
"peerDependencies": {
"react": "*"
},
"dependencies": {
"@jupyterlab/application": "3.0.0-rc.6",
"@jupyterlab/apputils": "3.0.0-rc.6",
"@jupyterlab/mainmenu": "3.0.0-rc.6",
"@jupyterlab/ui-components": "3.0.0-rc.6",
"@lumino/algorithm": "*",
"@lumino/coreutils": "*",
"@lumino/disposable": "*",
"@lumino/widgets": "*",
"core-js": "^3.6.5",
"fast-geotiff": "^1.0.0-beta.4",
"gdal-js": "^2.0.0",
"geotiff": "^1.0.0-beta.6",
"glfx": "0.0.4",
"jsfeat": "0.0.8",
"konva": "^4.2.2",
"plotty": "^0.4.2",
"save-file": "^2.3.1",
"threads": "^1.0.0-beta.3",
"vue": "^2.6.10",
"vue-class-component": "^7.2.3",
"vue-konva": "^2.0.7",
"vue-localstorage": "^0.6.2",
"vue-property-decorator": "^8.4.1",
"vue-resize": "^0.5.0",
"vuetify": "^2.2.22",
"vuex": "^3.0.1",
"zip-array": "^1.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.0.1",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"eslint-plugin-vuetify": "^1.0.0-beta.6",
"material-design-icons-iconfont": "^5.0.1",
"sass": "^1.22.9",
"sass-loader": "^8.0.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-cli-plugin-vuetify": "^2.0.5",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.4.3",
"worker-loader": "^2.0.0"
},
"eslintConfig": {
"plugins": [
"vuetify"
],
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-debugger": "off",
"vuetify/no-deprecated-classes": "error",
"vuetify/grid-unknown-attributes": "error",
"vuetify/no-legacy-grid": "error"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 ChromeAndroid versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 Edge versions"
],
"jupyterlab": {
"extension": true
},
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"babel": {
"presets": [
[
"@vue/app",
{
"useBuiltins": true
}
]
]
}
}