@fails-components/jupyter-launcher 0.0.1-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +29 -0
- package/README.md +101 -0
- package/lib/index.d.ts +139 -0
- package/lib/index.js +631 -0
- package/package.json +214 -0
- package/src/index.ts +936 -0
- package/style/base.css +5 -0
- package/style/index.css +1 -0
- package/style/index.js +2 -0
package/package.json
ADDED
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fails-components/jupyter-launcher",
|
|
3
|
+
"version": "0.0.1-alpha.10",
|
|
4
|
+
"description": "A collections of plugins steering an iframe with jupyter remotely",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"jupyter",
|
|
7
|
+
"jupyterlab",
|
|
8
|
+
"jupyterlab-extension"
|
|
9
|
+
],
|
|
10
|
+
"homepage": "https://github.com/fails-components/jupyterfails",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/fails-components/jupyterfails/issues"
|
|
13
|
+
},
|
|
14
|
+
"license": "BSD-3-Clause",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Marten Richter",
|
|
17
|
+
"email": "marten.richter@freenet.de"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
|
21
|
+
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
|
22
|
+
"schema/*.json",
|
|
23
|
+
"src/**/*.{ts,tsx}",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"main": "lib/index.js",
|
|
28
|
+
"types": "lib/index.d.ts",
|
|
29
|
+
"style": "style/index.css",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/fails-components/jupyterfails.git"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "jlpm build:lib && jlpm build:labextension:dev",
|
|
36
|
+
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
|
|
37
|
+
"build:labextension": "jupyter labextension build .",
|
|
38
|
+
"build:labextension:dev": "jupyter labextension build --development True .",
|
|
39
|
+
"build:lib": "tsc --sourceMap",
|
|
40
|
+
"build:lib:prod": "tsc",
|
|
41
|
+
"clean": "jlpm clean:lib",
|
|
42
|
+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
|
|
43
|
+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
|
|
44
|
+
"clean:labextension": "rimraf fails_components_jupyter_interceptor/labextension fails_components_jupyter_interceptor/_version.py",
|
|
45
|
+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
|
|
46
|
+
"eslint": "jlpm eslint:check --fix",
|
|
47
|
+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
|
|
48
|
+
"install:extension": "jlpm build",
|
|
49
|
+
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
|
|
50
|
+
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
|
|
51
|
+
"prepublishOnly": "npm run build",
|
|
52
|
+
"prettier": "jlpm prettier:base --write --list-different",
|
|
53
|
+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
|
|
54
|
+
"prettier:check": "jlpm prettier:base --check",
|
|
55
|
+
"stylelint": "jlpm stylelint:check --fix",
|
|
56
|
+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
|
|
57
|
+
"test": "jest --coverage --passWithNoTests",
|
|
58
|
+
"watch": "run-p watch:src watch:labextension",
|
|
59
|
+
"watch:src": "tsc -w --sourceMap",
|
|
60
|
+
"watch:labextension": "jupyter labextension watch ."
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@jupyter-notebook/application": "^7.2.0",
|
|
64
|
+
"@jupyter-widgets/jupyterlab-manager": "^5.0.11",
|
|
65
|
+
"@jupyterlab/application": "^4.3.4",
|
|
66
|
+
"@jupyterlab/apputils": "^4.3.4",
|
|
67
|
+
"@jupyterlab/coreutils": "^6.3.4",
|
|
68
|
+
"@jupyterlab/docmanager": "^4.3.4",
|
|
69
|
+
"@jupyterlab/docregistry": "^4.3.4",
|
|
70
|
+
"@jupyterlab/notebook": "^4.3.4",
|
|
71
|
+
"@jupyterlite/application-extension": "^0.4.4",
|
|
72
|
+
"@jupyterlite/contents": "^0.4.4",
|
|
73
|
+
"@jupyterlite/server": "^0.4.4",
|
|
74
|
+
"@jupyterlite/settings": "^0.4.4",
|
|
75
|
+
"@lumino/coreutils": "^2.2.0",
|
|
76
|
+
"@lumino/signaling": "^2.1.2",
|
|
77
|
+
"@lumino/widgets": "^2.3.2",
|
|
78
|
+
"json5": "^2.2.3"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@jupyterlab/builder": "^4.0.0",
|
|
82
|
+
"@jupyterlab/testutils": "^4.0.0",
|
|
83
|
+
"@types/jest": "^29.2.0",
|
|
84
|
+
"@types/json-schema": "^7.0.11",
|
|
85
|
+
"@types/react": "^18.0.26",
|
|
86
|
+
"@types/react-addons-linked-state-mixin": "^0.14.22",
|
|
87
|
+
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
88
|
+
"@typescript-eslint/parser": "^6.1.0",
|
|
89
|
+
"css-loader": "^6.7.1",
|
|
90
|
+
"eslint": "^8.36.0",
|
|
91
|
+
"eslint-config-prettier": "^8.8.0",
|
|
92
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
93
|
+
"jest": "^29.2.0",
|
|
94
|
+
"npm-run-all": "^4.1.5",
|
|
95
|
+
"prettier": "^3.0.0",
|
|
96
|
+
"rimraf": "^5.0.1",
|
|
97
|
+
"source-map-loader": "^1.0.2",
|
|
98
|
+
"style-loader": "^3.3.1",
|
|
99
|
+
"stylelint": "^15.10.1",
|
|
100
|
+
"stylelint-config-recommended": "^13.0.0",
|
|
101
|
+
"stylelint-config-standard": "^34.0.0",
|
|
102
|
+
"stylelint-csstree-validator": "^3.0.0",
|
|
103
|
+
"stylelint-prettier": "^4.0.0",
|
|
104
|
+
"typescript": "~5.0.2",
|
|
105
|
+
"yjs": "^13.5.0"
|
|
106
|
+
},
|
|
107
|
+
"sideEffects": [
|
|
108
|
+
"style/*.css",
|
|
109
|
+
"style/index.js"
|
|
110
|
+
],
|
|
111
|
+
"styleModule": "style/index.js",
|
|
112
|
+
"publishConfig": {
|
|
113
|
+
"access": "public"
|
|
114
|
+
},
|
|
115
|
+
"jupyterlab": {
|
|
116
|
+
"extension": true,
|
|
117
|
+
"outputDir": "fails_components_jupyter_launcher/labextension",
|
|
118
|
+
"schemaDir": "schema"
|
|
119
|
+
},
|
|
120
|
+
"eslintIgnore": [
|
|
121
|
+
"node_modules",
|
|
122
|
+
"dist",
|
|
123
|
+
"coverage",
|
|
124
|
+
"**/*.d.ts",
|
|
125
|
+
"tests",
|
|
126
|
+
"**/__tests__",
|
|
127
|
+
"ui-tests"
|
|
128
|
+
],
|
|
129
|
+
"eslintConfig": {
|
|
130
|
+
"extends": [
|
|
131
|
+
"eslint:recommended",
|
|
132
|
+
"plugin:@typescript-eslint/eslint-recommended",
|
|
133
|
+
"plugin:@typescript-eslint/recommended",
|
|
134
|
+
"plugin:prettier/recommended"
|
|
135
|
+
],
|
|
136
|
+
"parser": "@typescript-eslint/parser",
|
|
137
|
+
"parserOptions": {
|
|
138
|
+
"project": "tsconfig.json",
|
|
139
|
+
"sourceType": "module"
|
|
140
|
+
},
|
|
141
|
+
"plugins": [
|
|
142
|
+
"@typescript-eslint"
|
|
143
|
+
],
|
|
144
|
+
"rules": {
|
|
145
|
+
"@typescript-eslint/naming-convention": [
|
|
146
|
+
"error",
|
|
147
|
+
{
|
|
148
|
+
"selector": "interface",
|
|
149
|
+
"format": [
|
|
150
|
+
"PascalCase"
|
|
151
|
+
],
|
|
152
|
+
"custom": {
|
|
153
|
+
"regex": "^I[A-Z]",
|
|
154
|
+
"match": true
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"@typescript-eslint/no-unused-vars": [
|
|
159
|
+
"warn",
|
|
160
|
+
{
|
|
161
|
+
"args": "none"
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"@typescript-eslint/no-explicit-any": "off",
|
|
165
|
+
"@typescript-eslint/no-namespace": "off",
|
|
166
|
+
"@typescript-eslint/no-use-before-define": "off",
|
|
167
|
+
"@typescript-eslint/quotes": [
|
|
168
|
+
"error",
|
|
169
|
+
"single",
|
|
170
|
+
{
|
|
171
|
+
"avoidEscape": true,
|
|
172
|
+
"allowTemplateLiterals": false
|
|
173
|
+
}
|
|
174
|
+
],
|
|
175
|
+
"curly": [
|
|
176
|
+
"error",
|
|
177
|
+
"all"
|
|
178
|
+
],
|
|
179
|
+
"eqeqeq": "error",
|
|
180
|
+
"prefer-arrow-callback": "error"
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
"prettier": {
|
|
184
|
+
"singleQuote": true,
|
|
185
|
+
"trailingComma": "none",
|
|
186
|
+
"arrowParens": "avoid",
|
|
187
|
+
"endOfLine": "auto",
|
|
188
|
+
"overrides": [
|
|
189
|
+
{
|
|
190
|
+
"files": "package.json",
|
|
191
|
+
"options": {
|
|
192
|
+
"tabWidth": 4
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
"stylelint": {
|
|
198
|
+
"extends": [
|
|
199
|
+
"stylelint-config-recommended",
|
|
200
|
+
"stylelint-config-standard",
|
|
201
|
+
"stylelint-prettier/recommended"
|
|
202
|
+
],
|
|
203
|
+
"plugins": [
|
|
204
|
+
"stylelint-csstree-validator"
|
|
205
|
+
],
|
|
206
|
+
"rules": {
|
|
207
|
+
"csstree/validator": true,
|
|
208
|
+
"property-no-vendor-prefix": null,
|
|
209
|
+
"selector-class-pattern": "^([a-z][A-z\\d]*)(-[A-z\\d]+)*$",
|
|
210
|
+
"selector-no-vendor-prefix": null,
|
|
211
|
+
"value-no-vendor-prefix": null
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|