-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 3.68 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
100
101
{
"name": "@jupyterlite/xeus-nelson-kernel",
"version": "0.1.4",
"description": "A Nelson kernel for JupyterLite, powered by Xeus",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlite",
"jupyterlite-extension"
],
"homepage": "https://github.com/jupyterlite/xeus-nelson-kernel",
"bugs": {
"url": "https://github.com/jupyterlite/xeus-nelson-kernel/issues"
},
"license": "BSD-3-Clause",
"author": "JupyterLite Contributors",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,wasm}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlite/xeus-nelson-kernel.git"
},
"scripts": {
"copy-files": "copyfiles -u 1 src/xnelson_wasm.wasm src/xnelson_wasm.js src/*.data src/*.js lib",
"build:worker": "webpack --config worker.webpack.config.js --mode=development",
"build": "jlpm run build:xeus-nelson && jlpm run build:lib && jlpm run build:worker && jlpm run copy-files && jlpm run build:labextension:dev",
"build:xeus-nelson": "python jupyterlite_xeus_nelson/build.py --output-path src --build-worker",
"build:worker:prod": "webpack --config worker.webpack.config.js --mode=production",
"build:prod": "jlpm run clean && jlpm run build build:xeus-nelson && jlpm run build:lib && jlpm run build:worker:prod && jlpm run copy-files && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlite_xeus_nelson/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"lint": "jlpm prettier && yarn eslint",
"lint:check": "jlpm prettier:check && yarn eslint:check",
"prettier": "prettier --list-different --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml,.html}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml,.html}\"",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlite/kernel": "^0.1.0-beta.20",
"@jupyterlite/server": "^0.1.0-beta.20",
"comlink": "^4.3.1"
},
"devDependencies": {
"@jupyterlab/builder": "^3.4.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"copy-webpack-plugin": "^9.0.1",
"copyfiles": "^2.4.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"shx": "^0.3.0",
"source-map-loader": "^4.0.0",
"typescript": "~4.2.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "share/jupyter/labextensions/@jupyterlite/xeus-nelson-kernel",
"webpackConfig": "./webpack.config.js",
"sharedPackages": {
"@jupyterlite/kernel": {
"bundled": false,
"singleton": true
},
"@jupyterlite/contents": {
"bundled": false,
"singleton": true
}
}
},
"jupyterlite": {
"liteExtension": true
}
}