{ "name": "jupyterlite-numbl-kernel", "version": "0.1.0", "description": "Run numbl (MATLAB-syntax numerical computing) in JupyterLite notebooks, entirely in the browser", "keywords": [ "jupyter", "jupyterlab", "jupyterlab-extension", "jupyterlite", "jupyterlite-kernel", "numbl", "matlab" ], "homepage": "https://github.com/concept-collection/jupyterlite-numbl-kernel", "bugs": { "url": "https://github.com/concept-collection/jupyterlite-numbl-kernel/issues" }, "license": "Apache-2.0", "author": "Jeremy Magland", "files": [ "lib/**/*.{d.ts,js,js.map,json}", "style/**/*.{css,js}", "src/**/*.{ts,tsx}" ], "main": "lib/index.js", "types": "lib/index.d.ts", "style": "style/index.css", "repository": { "type": "git", "url": "https://github.com/concept-collection/jupyterlite-numbl-kernel.git" }, "scripts": { "build": "jlpm build:lib && jlpm build:labextension:dev", "build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension", "build:labextension": "jupyter labextension build .", "build:labextension:dev": "jupyter labextension build --development True .", "build:lib": "tsc --sourceMap", "build:lib:prod": "tsc", "clean": "rimraf lib tsconfig.tsbuildinfo", "clean:labextension": "rimraf jupyterlite_numbl_kernel/labextension jupyterlite_numbl_kernel/_version.py", "clean:all": "jlpm clean && jlpm clean:labextension", "eslint": "eslint . --ext .ts,.tsx --fix", "eslint:check": "eslint . --ext .ts,.tsx", "install:extension": "jlpm build", "lint": "jlpm prettier && jlpm eslint", "lint:check": "jlpm prettier:check && jlpm eslint:check", "prettier": "prettier --write \"**/*{.ts,.tsx,.js,.css,.json,.md}\"", "prettier:check": "prettier --check \"**/*{.ts,.tsx,.js,.css,.json,.md}\"", "watch": "run-p watch:src watch:labextension", "watch:src": "tsc -w --sourceMap", "watch:labextension": "jupyter labextension watch ." }, "dependencies": { "@jupyterlab/application": "^4.5.0", "@jupyterlab/rendermime-interfaces": "^3.9.0", "@jupyterlite/services": "^0.8.1", "@lumino/widgets": "^2.3.0", "numbl": "^0.4.16", "react": "^18.2.0", "react-dom": "^18.2.0" }, "devDependencies": { "@jupyterlab/builder": "^4.5.0", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "eslint-config-prettier": "^8.10.0", "eslint-plugin-prettier": "^5.0.0", "npm-run-all2": "^7.0.1", "prettier": "^3.0.0", "rimraf": "^5.0.1", "typescript": "~5.9.3" }, "sideEffects": [ "style/*.css", "style/index.js" ], "styleModule": "style/index.js", "publishConfig": { "access": "public" }, "jupyterlab": { "extension": "lib/index.js", "mimeExtension": "lib/mime.js", "outputDir": "jupyterlite_numbl_kernel/labextension", "sharedPackages": { "@jupyterlite/services": { "bundled": false, "singleton": true } } }, "eslintIgnore": [ "node_modules", "dist", "lib", "**/*.d.ts", "jupyterlite_numbl_kernel" ], "eslintConfig": { "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { "project": "tsconfig.json", "sourceType": "module" }, "plugins": [ "@typescript-eslint" ], "rules": { "@typescript-eslint/naming-convention": [ "error", { "selector": "interface", "format": [ "PascalCase" ], "custom": { "regex": "^I[A-Z]", "match": true } } ], "@typescript-eslint/no-unused-vars": [ "warn", { "args": "none" } ], "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-namespace": "off", "curly": [ "error", "all" ], "eqeqeq": "error", "prefer-arrow-callback": "error" } }, "prettier": { "singleQuote": true, "trailingComma": "none", "arrowParens": "avoid", "endOfLine": "auto" } }