Browse Source

Add a launcher package

Steven Silvester 8 years ago
parent
commit
0fa3d6d33d
4 changed files with 55 additions and 1 deletions
  1. 39 0
      src/launcher/package.json
  2. 1 1
      src/launcher/src/index.ts
  3. 0 0
      src/launcher/style/index.css
  4. 15 0
      src/launcher/tsconfig.json

+ 39 - 0
src/launcher/package.json

@@ -0,0 +1,39 @@
+{
+  "name": "@jupyterlab/launcher",
+  "version": "0.1.0",
+  "description": "JupyterLab - Launcher Panel",
+  "main": "lib/index.js",
+  "types": "lib/index.d.ts",
+  "files": [
+    "lib/*.d.ts",
+    "lib/*.js"
+  ],
+  "directories": {
+    "lib": "lib/"
+  },
+  "dependencies": {
+    "@jupyterlab/apputils": "^0.1.0",
+    "@phosphor/algorithm": "^0.1.1",
+    "@phosphor/coreutils": "^0.1.5",
+    "@phosphor/disposable": "^0.1.1",
+    "@phosphor/virtualdom": "^0.1.1"
+  },
+  "devDependencies": {
+    "rimraf": "^2.5.2",
+    "typescript": "^2.2.1"
+  },
+  "scripts": {
+    "build": "tsc",
+    "clean": "rimraf lib"
+  },
+  "repository": {
+    "type": "git",
+    "url": "https://github.com/jupyterlab/jupyterlab.git"
+  },
+  "author": "Project Jupyter",
+  "license": "BSD-3-Clause",
+  "bugs": {
+    "url": "https://github.com/jupyterlab/jupyterlab/issues"
+  },
+  "homepage": "https://github.com/jupyterlab/jupyterlab"
+}

+ 1 - 1
src/launcher/index.ts → src/launcher/src/index.ts

@@ -19,7 +19,7 @@ import {
 
 import {
   ICommandLinker, VDomModel, VDomWidget
-} from '../apputils';
+} from '@jupyterlab/apputils';
 
 
 

+ 0 - 0
src/launcher/index.css → src/launcher/style/index.css


+ 15 - 0
src/launcher/tsconfig.json

@@ -0,0 +1,15 @@
+{
+  "compilerOptions": {
+    "declaration": true,
+    "noImplicitAny": true,
+    "noEmitOnError": true,
+    "noUnusedLocals": true,
+    "module": "commonjs",
+    "moduleResolution": "node",
+    "target": "ES5",
+    "outDir": "./lib",
+    "lib": ["ES5", "ES2015.Promise", "DOM", "ES2015.Collection"],
+    "types": []
+  },
+  "include": ["src/*"]
+}