{
  "name": "@curvenote/nbtx",
  "license": "MIT",
  "version": "1.0.2",
  "description": "Notebook Tranlators",
  "author": "Steve Purves <steve@curvenote.com>",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/curvenote/curvenote.git"
  },
  "scripts": {
    "clean": "rimraf dist",
    "build:esm": "tsc --project ./tsconfig.json --module es2015   --outDir dist/esm",
    "build:cjs": "tsc --project ./tsconfig.json --module commonjs --outDir dist/cjs",
    "declarations": "tsc --project ./tsconfig.json --declaration --emitDeclarationOnly --outDir dist/types",
    "build": "npm-run-all -l clean -p build:cjs build:esm declarations",
    "lint": "eslint \"src/**/!(*.spec).ts\" -c ./.eslintrc.js",
    "lint:format": "npx prettier --check \"src/**/*.ts\"",
    "lint:format:fix": "npx prettier --write \"src/**/*.ts\"",
    "test": "vitest run",
    "test:watch": "vitest watch"
  },
  "bugs": {
    "url": "https://github.com/curvenote/curvenote/issues"
  },
  "dependencies": {
    "@jupyterlab/nbformat": "^3.3.2",
    "@typescript-eslint/eslint-plugin": "^5.16.0",
    "natural-compare-lite": "^1.4.0",
    "uuid": "^8.3.2"
  },
  "peerDependencies": {
    "@curvenote/blocks": "^1.6.3"
  },
  "devDependencies": {
    "@curvenote/blocks": "^1.6.3",
    "@types/uuid": "^8.3.4"
  }
}
