{
    "name": "bulletin-board-code",
    "version": "1.0.3",
    "description": "Bidirectional convert between BBCode and HTML.",
    "author": {
        "name": "Peter Placzek",
        "email": "contact@tada5hi.net",
        "url": "https://github.com/tada5hi"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/tada5hi/bulletin-board-code.git"
    },
    "exports": {
        "./package.json": "./package.json",
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs",
            "require": "./dist/index.cjs"
        }
    },
    "main": "dist/index.cjs",
    "module": "dist/index.mjs",
    "types": "dist/index.d.ts",
    "files": [
        "dist/"
    ],
    "scripts": {
        "build:types": "tsc --emitDeclarationOnly",
        "build:js": "rollup -c",
        "build": "rimraf dist && npm run build:types && npm run build:js",
        "build:watch": "npm run build -- --watch",
        "test": "cross-env NODE_ENV=test jest --config ./test/jest.config.js",
        "test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
        "lint": "eslint --ext .js,.vue,.ts ./src ./test",
        "lint:fix": "npm run lint -- --fix",
        "prepare": "npx husky install",
        "prepublishOnly": "npm run build"
    },
    "keywords": [
        "bulletin-board-code",
        "bbcode",
        "html",
        "parser",
        "bbcode-to-html",
        "html-to-bbcode",
        "tokenizer"
    ],
    "license": "MIT",
    "devDependencies": {
        "@rollup/plugin-commonjs": "^28.0.3",
        "@rollup/plugin-node-resolve": "^16.0.1",
        "@swc/core": "^1.11.15",
        "@swc/jest": "^0.2.37",
        "@tada5hi/commitlint-config": "^1.2.4",
        "@tada5hi/eslint-config-typescript": "^1.2.15",
        "@tada5hi/semantic-release": "^0.3.2",
        "@tada5hi/tsconfig": "^0.6.0",
        "@types/jest": "^29.5.14",
        "@types/node": "^22.13.15",
        "cross-env": "^7.0.3",
        "eslint": "^8.57.1",
        "husky": "^9.1.7",
        "jest": "^29.7.0",
        "rimraf": "^6.0.1",
        "rollup": "^4.38.0",
        "semantic-release": "^24.2.3",
        "typescript": "^5.8.2"
    },
    "dependencies": {
        "node-html-parser": "^7.0.1"
    }
}
