{
    "name": "@qrvey/id-generator",
    "types": "dist/types/index.d.ts",
    "main": "dist/cjs/index.js",
    "version": "1.0.1",
    "license": "MIT",
    "publishConfig": {
        "access": "public"
    },
    "exports": {
        ".": {
            "import": "./dist/esm/index.mjs",
            "require": "./dist/cjs/index.js",
            "default": "./dist/cjs/index.js"
        }
    },
    "scripts": {
        "test": "jest",
        "test:cov": "jest --coverage --collectCoverageFrom='src/**/*.ts'",
        "type-check": "tsc",
        "build:clean": "rm -rf dist",
        "build:compile:original": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
        "build:compile:cjs": "tsup --config ./tsup.config.cjs.ts",
        "build:compile:esm": "tsup --config ./tsup.config.esm.ts",
        "build:compile:types": "tsup --config ./tsup.config.types.ts",
        "build:compile": "yarn build:compile:cjs && yarn build:compile:esm && yarn build:compile:types",
        "build": "yarn build:clean && yarn build:compile",
        "prepare-publish": "yarn install && yarn test:cov && yarn build",
        "publish-package-dev": "yarn prepare-publish && yarn publish-codeartifact",
        "publish-package": "yarn prepare-publish && npm publish"
    },
    "dependencies": {
        "nanoid": "3.3.8"
    },
    "devDependencies": {
        "auto-version-js": "^0.3.10",
        "jest": "^29.7.0",
        "ts-jest": "^29.1.1",
        "tsup": "^8.0.1",
        "typescript": "^5.3.3"
    },
    "repository": {
        "type": "git"
    },
    "files": [
        "dist/*"
    ],
    "keywords": [
        "qrvey",
        "id-generator"
    ]
}
