-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebRPackage.json
105 lines (105 loc) · 2.66 KB
/
webRPackage.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
{
"name": "webr",
"version": "0.3.2",
"description": "The statistical programming language R compiled into WASM for use in a web browser and node.",
"keywords": [
"webR",
"wasm",
"R",
"statistics",
"programming",
"webassembly",
"emscripten"
],
"homepage": "https://github.com/r-wasm/webr",
"repository": {
"type": "git",
"url": "https://github.com/r-wasm/webr.git"
},
"bugs": {
"url": "https://github.com/r-wasm/webr/issues"
},
"license": "SEE LICENSE IN LICENCE.md",
"contributors": [
{
"name": "George Stagg",
"email": "[email protected]"
},
{
"name": "Lionel Henry",
"email": "[email protected]"
},
{
"name": "Posit Software, PBC",
"url": "https://posit.co/"
}
],
"files": ["dist"],
"main": "dist/webr.mjs",
"types": "dist/webR/webr-main.d.ts",
"exports": {
".": {
"node": "./dist/webr.cjs",
"default": "./dist/webr.mjs",
"types": "./dist/webR/webr-main.d.ts"
}
},
"typesVersions": {
"*": {
"*": ["dist/webR/*"]
}
},
"engines": {
"node": ">=17.0.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.8.1",
"@codemirror/commands": "^6.2.4",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.15.0",
"@msgpack/msgpack": "^2.8.0",
"classnames": "^2.2.6",
"codemirror": "^6.0.1",
"codemirror-lang-r": "^0.1.0-2",
"lightningcss": "^1.21.5",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-accessible-treeview": "^2.6.1",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"tsx": "^4.0.0",
"xmlhttprequest-ssl": "^2.1.0",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0",
"xterm-readline": "^1.1.1"
},
"devDependencies": {
"@types/emscripten": "^1.39.6",
"@types/jest": "^28.1.8",
"@types/node": "^17.0.35",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"c8": "^7.12.0",
"esbuild": "^0.17.19",
"esbuild-css-modules-plugin": "^2.2.16",
"eslint": "^8.33.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-jsdoc": "^46.2.4",
"eslint-plugin-react": "^7.32.2",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc --emitDeclarationOnly && tsx ./esbuild.ts",
"serve": "tsx ./esbuild.ts --serve",
"prepack": "cp ../LICENSE.md ../README.md .",
"postpack": "rm LICENSE.md README.md"
}
}