UNPKG

webr

Version:

The statistical programming language R compiled into WASM for use in a web browser and node.

115 lines (114 loc) 3.07 kB
{ "name": "webr", "version": "0.4.4", "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": "george.stagg@posit.co" }, { "name": "Lionel Henry", "email": "lionel@posit.co" }, { "name": "Posit Software, PBC", "url": "https://posit.co/" } ], "files": [ "dist" ], "main": "dist/webr.mjs", "types": "dist/webR/webr-main.d.ts", "exports": { ".": { "types": "./dist/webR/webr-main.d.ts", "node": "./dist/webr.cjs", "default": "./dist/webr.mjs" }, "./chan/serviceworker": { "types": "./dist/webR/chan/serviceworker.d.ts", "browser": "./dist/webr-serviceworker.js", "default": "./dist/webr-serviceworker.mjs" } }, "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", "jszip": "^3.10.1", "lezer-r": "^0.1.1", "lightningcss": "^1.21.5", "pako": "^2.1.0", "prop-types": "^15.7.2", "react": "^18.2.0", "react-accessible-treeview": "^2.6.1", "react-data-grid": "^7.0.0-beta.44", "react-dom": "^18.2.0", "react-icons": "^4.10.1", "react-resizable-panels": "^2.0.19", "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", "@jupyterlite/contents": "^0.6.2", "@types/jest": "^28.1.8", "@types/node": "^17.0.35", "@types/pako": "^2.0.3", "@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.25.3", "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" } }