package.json 998 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@jupyterlab/nbformat",
  3. "version": "2.0.0-alpha.4",
  4. "description": "Notebook format interfaces",
  5. "homepage": "https://github.com/jupyterlab/jupyterlab",
  6. "bugs": {
  7. "url": "https://github.com/jupyterlab/jupyterlab/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/jupyterlab/jupyterlab.git"
  12. },
  13. "license": "BSD-3-Clause",
  14. "author": "Project Jupyter",
  15. "files": [
  16. "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
  17. "schema/*.json",
  18. "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
  19. ],
  20. "sideEffects": [
  21. "style/**/*"
  22. ],
  23. "main": "lib/index.js",
  24. "types": "lib/index.d.ts",
  25. "directories": {
  26. "lib": "lib/"
  27. },
  28. "scripts": {
  29. "build": "tsc",
  30. "clean": "rimraf lib",
  31. "prepublishOnly": "npm run build",
  32. "watch": "tsc -w --listEmittedFiles"
  33. },
  34. "devDependencies": {
  35. "rimraf": "~3.0.0",
  36. "typescript": "~3.7.3"
  37. },
  38. "publishConfig": {
  39. "access": "public"
  40. }
  41. }