{
    "name": "atomico",
    "version": "2.1.0",
    "description": "Atomico is a small library for the creation of interfaces based on web-components, only using functions and hooks.",
    "type": "module",
    "main": "./core.js",
    "module": "./core.js",
    "types": "./types/core.d.ts",
    "bin": {
        "atomico": "cli/index.js"
    },
    "workspaces": [
        "./developer-experience/**/*",
        "."
    ],
    "exports": {
        ".": {
            "types": "./types/core.d.ts",
            "default": "./core.js"
        },
        "./test-hooks": {
            "types": "./types/test-hooks.d.ts",
            "default": "./test-hooks.js"
        },
        "./test-dom": {
            "types": "./types/test-dom.d.ts",
            "default": "./test-dom.js"
        },
        "./jsx-runtime": {
            "types": "./types/jsx-runtime.d.ts",
            "default": "./jsx-runtime.js"
        },
        "./jsx-dev-runtime": {
            "types": "./types/jsx-runtime.d.ts",
            "default": "./jsx-runtime.js"
        },
        "./utils": {
            "types": "./types/utils.d.ts",
            "default": "./utils.js"
        },
        "./types/dom": {
            "types": "./types/dom.js"
        },
        "./types/schema": {
            "types": "./types/schema.js"
        },
        "./types/hooks": {
            "types": "./types/hooks.js"
        },
        "./types/vnode": {
            "types": "./types/vnode.js"
        },
        "./types/component": {
            "types": "./types/component.js"
        },
        "./types/context": {
            "types": "./types/context.js"
        },
        "./types/css": {
            "types": "./types/css.js"
        },
        "./types/errors": {
            "types": "./types/errors.js"
        }
    },
    "typesVersions": {
        "*": {
            "jsx-runtime": [
                "types/jsx-runtime.d.ts"
            ],
            "jsx-dev-runtime": [
                "types/jsx-runtime.d.ts"
            ],
            "test-hooks": [
                "types/test-hooks.d.ts"
            ],
            "test-dom": [
                "types/test-dom.d.ts"
            ]
        }
    },
    "scripts": {
        "test": "vitest --coverage --browser",
        "test:cv": "vitest run --coverage --browser",
        "client:start": "vite",
        "test:ts:core": "tsc --project types/tsconfig.json",
        "test:ts:dx": "npm run test -w @test/types",
        "test:ts": "npm run test:ts:core && npm run test:ts:dx",
        "prepublishOnly": "npm run test:ts && npm run test:cv"
    },
    "repository": {
        "type": "git",
        "url": "git+ssh://git@github.com/atomicojs/atomico.git"
    },
    "keywords": [
        "jsx",
        "web-components",
        "hooks",
        "custom-elements",
        "webcomponent",
        "react"
    ],
    "author": "UpperCod",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/atomicojs/atomico/issues"
    },
    "homepage": "https://github.com/atomicojs/atomico#readme",
    "devDependencies": {
        "@rollup/rollup-linux-x64-gnu": "^4.60.1",
        "@vitest/browser-playwright": "^4.0.9",
        "@vitest/coverage-v8": "^4.0.9",
        "playwright": "^1.56.1",
        "prettier": "^3.8.3",
        "typescript": "^5.3.3",
        "vite": "^7.2.2",
        "vitest": "^4.0.9"
    },
    "prettier": {
        "tabWidth": 4,
        "singleQuote": false,
        "endOfLine": "lf",
        "trailingComma": "none"
    }
}
