{
    "name": "@chili-publish/studio-sdk",
    "private": false,
    "version": "1.45.0",
    "description": "The sdk for the chili editor",
    "repository": {
        "type": "git",
        "url": "git://github.com/chili-publish/studio-sdk.git"
    },
    "license": "MIT",
    "dependencies": {
        "penpal": "6.1.0"
    },
    "devDependencies": {
        "@babel/cli": "^7.14.8",
        "@babel/core": "^7.14.8",
        "@babel/plugin-transform-runtime": "^7.14.5",
        "@babel/preset-env": "^7.14.8",
        "@babel/preset-typescript": "^7.14.5",
        "@babel/runtime": "^7.14.8",
        "cross-env": "^7.0.3",
        "@inthepocket/npm-license-scraper": "^2.3.0",
        "@testing-library/jest-dom": "^5.14.1",
        "@types/jest": "^29.5.0",
        "@typescript-eslint/eslint-plugin": "^5.36.0",
        "@typescript-eslint/parser": "^5.36.0",
        "eslint": "^7.31.0",
        "eslint-config-prettier": "^8.3.0",
        "eslint-plugin-import": "^2.23.4",
        "eslint-plugin-jsx-a11y": "^6.4.1",
        "eslint-plugin-prettier": "^3.4.0",
        "husky": "^7.0.1",
        "jest": "^27.0.6",
        "jest-junit": "^12.3.0",
        "prettier": "^2.3.2",
        "pretty-quick": "^3.1.1",
        "shx": "^0.3.3",
        "ts-jest": "^29.2.5",
        "typedoc": "^0.27.9",
        "typedoc-plugin-markdown": "^3.13.4",
        "typescript": "^5.7.3",
        "vite": "^6.1.6",
        "vite-plugin-dts": "^4.5.3"
    },
    "engines": {
        "node": ">=18.0.0"
    },
    "scripts": {
        "clean": "shx rm -rf _bundles lib connector-types",
        "build": "yarn clean && vite build && cross-env SDK_BUILD_TARGET=lib vite build && node scripts/postbuild.js",
        "build:dev": "yarn clean && vite build --mode development && cross-env SDK_BUILD_TARGET=lib vite build --mode development && node scripts/postbuild.js",
        "lint": "eslint --fix \"./src/**/*.{js,jsx,ts,tsx,json}\"",
        "testw": "jest --watch",
        "test": "jest",
        "ci-lint": "eslint \"./src/**/*.{js,jsx,ts,tsx,json}\"",
        "format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
        "format-staged": "pretty-quick --staged",
        "cover": "jest --coverage",
        "make-badges": "node createCoverageBadge",
        "validate-licenses": "node validate_licenses.js",
        "build-docs-md": "npx typedoc --out ./docs/md",
        "build-docs-html": "npx typedoc --out ./docs/html --readme ./src/README_HTML.md"
    },
    "husky": {
        "hooks": {
            "pre-commit": "npm run format-staged"
        }
    },
    "main": "./_bundles/main.js",
    "module": "./lib/src/index.es.js",
    "browser": "./_bundles/main.js",
    "types": "./lib/src/index.d.ts",
    "exports": {
        ".": {
            "types": "./lib/src/index.d.ts",
            "import": "./lib/src/index.es.js",
            "require": "./lib/src/index.cjs.js"
        },
        "./lib/src/next": {
            "types": "./lib/src/next/index.d.ts",
            "import": "./lib/src/next/index.es.js",
            "require": "./lib/src/next/index.cjs.js"
        }
    },
    "files": [
        "lib/",
        "connector-types/",
        "_bundles/",
        "README.md"
    ],
    "bugs": {
        "url": "https://github.com/chili-publish/studio-sdk/issues"
    },
    "homepage": "https://github.com/chili-publish/studio-sdk#readme",
    "author": "chili-publish",
    "directories": {
        "doc": "docs",
        "lib": "lib"
    }
}