forked from r-wasm/jupyterlite-webr-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.11 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@r-wasm/jupyterlite-webr-kernel",
"version": "0.1.0",
"description": "An R kernel for JupyterLite, powered by webR",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlite",
"jupyterlite-extension",
"wasm",
"webr"
],
"homepage": "https://github.com/r-wasm/jupyterlite-webr-kernel",
"bugs": {
"url": "https://github.com/r-wasm/jupyterlite-webr-kernel/issues"
},
"license": "MIT",
"author": {
"name": "George Stagg",
"email": "[email protected]"
},
"contributors": [
{
"name": "George Stagg",
"email": "[email protected]"
},
{
"name": "Posit Software, PBC",
"url": "https://posit.co/"
}
],
"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/r-wasm/jupyterlite-webr-kernel.git"
},
"scripts": {
"build": "yarn run build:lib && yarn run build:labextension:dev",
"build:prod": "yarn run clean && yarn run build:lib && yarn run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "yarn run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlite_webr/labextension",
"clean:all": "yarn run clean:lib && yarn run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "yarn run build",
"lint": "yarn eslint",
"lint:check": "yarn eslint:check"
},
"dependencies": {
"@jupyterlite/kernel": "^0.1.0-beta.14",
"@jupyterlite/server": "^0.1.0-alpha.14",
"@r-wasm/webr": "^0.1.0",
"hash.js": "^1.1.7"
},
"devDependencies": {
"@jupyterlab/builder": "^3.1.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.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.8.0",
"rimraf": "^3.0.2",
"shx": "^0.3.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlite_webr/labextension",
"webpackConfig": "./webpack.config.js",
"sharedPackages": {
"@jupyterlite/kernel": {
"bundled": false,
"singleton": true
}
}
},
"jupyterlite": {
"liteExtension": true
},
"jupyter-releaser": {
"skip": [
"check-links"
],
"hooks": {
"before-build-npm": [
"python -m pip install jupyterlab~=3.1",
"jlpm"
]
}
}
}