12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "@jupyterlab/translation-extension",
- "version": "3.1.0-beta.0",
- "description": "JupyterLab - Translation services",
- "keywords": [
- "jupyter",
- "jupyterlab",
- "jupyterlab-extension"
- ],
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "sideEffects": [
- "style/*.css",
- "style/index.js"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "files": [
- "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
- "schema/**/*.{json,}",
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
- "style/index.js"
- ],
- "scripts": {
- "build": "tsc",
- "clean": "rimraf lib tsconfig.tsbuildinfo",
- "eslint": "eslint . --ext .ts,.tsx --fix",
- "eslint:check": "eslint . --ext .ts,.tsx",
- "prepare": "jlpm run clean && jlpm run build",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w"
- },
- "dependencies": {
- "@jupyterlab/application": "^3.1.0-beta.0",
- "@jupyterlab/apputils": "^3.1.0-beta.0",
- "@jupyterlab/mainmenu": "^3.1.0-beta.0",
- "@jupyterlab/settingregistry": "^3.1.0-beta.0",
- "@jupyterlab/translation": "^3.1.0-beta.0"
- },
- "devDependencies": {
- "rimraf": "~3.0.0",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "extension": true,
- "schemaDir": "schema"
- },
- "styleModule": "style/index.js"
- }
|