{
  "name": "@snailicide/g-windi",
  "version": "0.0.12",
  "private": false,
  "description": "Function library for Windicss/UnoCSS and Vue 3",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "@types/ramda": "^0.31.0",
    "@vueuse/core": "^13.1.0",
    "chroma.ts": "^1.0.10",
    "ramda": "^0.31.3",
    "ramda-adjunct": "^5.0.1",
    "type-fest": "^4.22.0",
    "vue": "^3.4.32",
    "windicss": "^3.5.6",
    "@snailicide/g-library": "1.2.2"
  },
  "devDependencies": {
    "@types/node": "^24.1.0",
    "prettier": "^3.0.3",
    "rollup": "^4.18.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2",
    "vitest": "^3.1.2",
    "@snailicide/build-config": "1.4.4"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    }
  },
  "author": {
    "name": "Gillian Tunney",
    "email": "gbtunney@mac.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gbtunney/snailicide-monorepo.git"
  },
  "homepage": "https://github.com/gbtunney/snailicide-monorepo/tree/main/packages/g-windi#readme",
  "bugs": {
    "url": "https://github.com/gbtunney/snailicide-monorepo/issues"
  },
  "files": [
    "CHANGELOG.md",
    "dist",
    "docs",
    "exampleNodeScript.ts",
    "types"
  ],
  "keywords": [
    "typescript",
    "windicss",
    "unocss"
  ],
  "commonjs": "./dist/index.cjs",
  "scripts": {
    "\n========== BUILD >> ==========": "",
    "build": "pnpm build:ts && pnpm build:rollup",
    "build:rollup": "rollup --config ./rollup.config.js",
    "build:ts": "tsc --build",
    "\n========== DEV >> ==========": "",
    "dev": "tsc --build --watch",
    "dev:rollup": "nodemon --exec 'pnpm build' --watch ./rollup.config.ts ./src",
    "\n========== TEST >> ==========": "",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "\n========== PUBLISH >> ==========": "",
    "release": "pnpm prerelease && pnpm publish --access public --report-summary",
    "prerelease": "pnpm clean && pnpm test && pnpm build &&  pnpm run release:archive",
    "release:archive": "mkdir -p ./releases &&  pnpm exec npm pack --pack-destination='./releases'",
    "\n========== CLEAN >> ==========": "",
    "clean": "pnpm clean:ts && pnpm clean:build",
    "clean:ts": "tsc --build --clean",
    "clean:build": "rm -R -f dist types docs"
  }
}