{
    "name": "xmindmark",
    "version": "0.3.2",
    "description": "A mind mapping markup language, compatible with markdown, convertable to/from xmind.",
    "bin": {
        "xmindmark": "./dist/src/cli/index.js"
    },
    "main": "./dist/src/index.js",
    "files": [
        "dist/**/*"
    ],
    "types": "./dist/src/index.d.ts",
    "scripts": {
        "serve": "tsc --watch --sourceMap",
        "build": "yarn build:tsc && yarn build:umd",
        "build:tsc": "tsc",
        "build:umd": "esbuild ./src/index.umd.ts --bundle --format=iife --outfile=./dist/umd/xmindmark.min.js --minify",
        "serve:playground": "cd playground && yarn && yarn serve",
        "build:playground": "cd playground && yarn && yarn build",
        "test": "rimraf ./dist && npm run build && mocha --recursive --color dist/**/*.spec.js",
        "prepublishOnly": "rimraf ./dist && npm run build"
    },
    "keywords": [
        "xmindmark",
        "xmind",
        "markdown",
        "mindmap",
        "mind map",
        "mind mapping"
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/xmindltd/xmindmark"
    },
    "bugs": {
        "url": "https://github.com/xmindltd/xmindmark/issues"
    },
    "author": "XMind ltd.",
    "maintainers": [
        {
            "name": "xmind_official",
            "email": "npm@xmind.net"
        },
        {
            "name": "parrotdance",
            "email": "parrotdance95@gmail.com"
        },
        {
            "name": "Brian Sun",
            "email": "brian@xmind.net"
        }
    ],
    "license": "MIT",
    "dependencies": {
        "commander": "^8.3.0",
        "fs-extra": "^10.0.0",
        "jszip": "^3.7.1",
        "nanoid": "^3.3.2",
        "puppeteer-core": "^13.5.0"
    },
    "devDependencies": {
        "@types/chai": "^4.3.0",
        "@types/chai-as-promised": "^7.1.5",
        "@types/fs-extra": "^9.0.13",
        "@types/mocha": "^9.0.0",
        "@types/node": "^16.11.6",
        "chai": "^4.3.6",
        "chai-as-promised": "^7.1.1",
        "esbuild": "^0.14.36",
        "joi": "^17.4.2",
        "mocha": "^9.2.2",
        "rimraf": "^3.0.2",
        "typescript": "^4.5.4"
    }
}
