{
  "name": "bernova",
  "version": "1.7.10",
  "description": "The best way to write CSS with Javascript syntax",
  "main": "./dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "require": "./dist/src/index.js",
      "default": "./dist/src/index.js"
    },
    "./interfaces": {
      "types": "./dist/interfaces/componentsType.ts"
    }
  },
  "bin": {
    "bernova": "./dist/bin/bernova.js",
    "bv-config": "./dist/bin/createConfigFile.js",
    "bv-build": "./dist/bin/buildstyle.js",
    "bv-pre-build": "./dist/bin/preBuildStyles.js",
    "bv-copy-css": "./dist/bin/copyCss.js",
    "bv-copy-tools": "./dist/bin/copyTools.js",
    "bv-copy-provider": "./dist/bin/copyProvider.js"
  },
  "_moduleAliases": {
    "@": "src"
  },
  "files": [
    "dist",
    "src",
    "types",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "dist": "yarn build",
    "build": "yarn clean && yarn build:types && yarn build:vite && yarn build:copy",
    "build:vite": "vite build",
    "build:types": "tsc --declaration --emitDeclarationOnly --outDir types",
    "build:copy-interfaces": "cp -r interfaces dist/interfaces && echo 'bernova components interfaces copied'",
    "build:copy": "yarn build:copy-src && yarn build:copy-interfaces && yarn build:copy-bin && yarn build:optimize",
    "build:copy-src": "cp -r src dist/ && echo 'Source files copied for compatibility'",
    "build:copy-bin": "mkdir -p dist/bin && cp -r bin/* dist/bin/ && chmod +x dist/bin/*.js && echo 'CLI binaries copied and made executable'",
    "build:optimize": "yarn build:remove-tests && yarn build:remove-docs && yarn build:minify-cli",
    "build:remove-tests": "find dist/src -name '__tests__' -type d -exec rm -rf {} + 2>/dev/null || true && find dist/src -name '*.test.js' -delete 2>/dev/null || true && echo 'Test files removed from build'",
    "build:remove-docs": "find dist/src -name '*.md' -delete 2>/dev/null || true && echo 'Documentation files removed from build'",
    "build:minify-cli": "node scripts/minify-all.js",
    "start": "node ./bin/bernova.js",
    "start:foundation": "node ./bin/bernova.js --foundation-only",
    "start:component": "node ./bin/bernova.js --component-only",
    "dev": "yarn start",
    "config": "node ./bin/createConfigFile.js",
    "typing": "node ./bin/declareCssType.js",
    "prepublishOnly": "yarn build",
    "test": "vitest --coverage.enabled=true --silent --run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage",
    "test:ci": "vitest --coverage.enabled=true --silent --run ",
    "clean": "rm -rf dist types",
    "postinstall": "echo 'postinstall'",
    "changeset": "changeset",
    "changeset:version": "changeset version",
    "changeset:publish": "changeset publish",
    "changeset:status": "changeset status --verbose",
    "lint": "oxlint src",
    "lint:fix": "oxlint src --fix",
    "format": "oxfmt src bin",
    "format:check": "oxfmt --check src bin",
    "typecheck": "tsc --noEmit",
    "validate": "yarn format:check && yarn lint && yarn typecheck && yarn dist",
    "validate:quick": "yarn lint && yarn typecheck"
  },
  "keywords": [
    "css",
    "css-in-js",
    "javascript",
    "typescript",
    "styling",
    "frontend",
    "web-development",
    "build-tool",
    "postcss",
    "themes"
  ],
  "author": {
    "name": "Kubit team",
    "url": "https://github.com/kubit-ui"
  },
  "contributors": [
    {
      "name": "Kubit team",
      "url": "https://github.com/kubit-ui"
    }
  ],
  "license": "Apache-2.0",
  "homepage": "https://github.com/kubit-ui/bernova#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kubit-ui/bernova.git"
  },
  "bugs": {
    "url": "https://github.com/kubit-ui/bernova/issues"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/kubit-ui"
  },
  "engines": {
    "node": ">=20.0.0 <25.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "@babel/core": "^7.28.5",
    "@babel/preset-env": "^7.28.5",
    "autoprefixer": "^10.4.21",
    "cssnano": "^7.1.1",
    "ora": "^9.0.0",
    "postcss": "^8.5.6",
    "postcss-font-magician": "^4.0.0",
    "postcss-preset-env": "^10.4.0",
    "terser": "^5.44.1",
    "ts-node": "^10.9.2",
    "tsconfig-paths": "^4.2.0",
    "typescript": "*"
  },
  "devDependencies": {
    "@babel/cli": "^7.28.3",
    "@changesets/cli": "^2.29.8",
    "@vitejs/plugin-legacy": "^6.1.1",
    "@vitest/coverage-v8": "3.2.4",
    "@vitest/ui": "^3.2.4",
    "glob": "^11.0.0",
    "jsdom": "^26.1.0",
    "module-alias": "^2.2.3",
    "oxfmt": "^0.41.0",
    "oxlint": "^1.56.0",
    "postcss-combine-media-query": "^2.1.0",
    "rollup-plugin-copy": "^3.5.0",
    "vite": "^6.3.6",
    "vite-plugin-dts": "^4.5.0",
    "vitest": "^3.2.4"
  }
}
