{
  "name": "@linaria/utils",
  "version": "5.0.2",
  "description": "Blazing fast zero-runtime CSS in JS library",
  "keywords": [
    "css",
    "css-in-js",
    "linaria",
    "react",
    "styled-components"
  ],
  "homepage": "https://github.com/callstack/linaria#readme",
  "bugs": "https://github.com/callstack/linaria/issues",
  "repository": "git@github.com:callstack/linaria.git",
  "license": "MIT",
  "sideEffects": false,
  "main": "lib/index.js",
  "module": "esm/index.js",
  "types": "types/index.d.ts",
  "files": [
    "types/",
    "lib/",
    "esm/"
  ],
  "dependencies": {
    "@babel/core": "^7.22.15",
    "@babel/generator": "^7.22.15",
    "@babel/plugin-transform-modules-commonjs": "^7.22.15",
    "@babel/template": "^7.22.15",
    "@babel/traverse": "^7.22.15",
    "@babel/types": "^7.22.15",
    "babel-merge": "^3.0.0",
    "find-up": "^5.0.0",
    "minimatch": "^9.0.3",
    "@linaria/logger": "^5.0.0"
  },
  "devDependencies": {
    "@types/babel__core": "^7.20.1",
    "@types/babel__generator": "^7.6.4",
    "@types/babel__template": "^7.4.1",
    "@types/babel__traverse": "^7.20.1",
    "@types/jest": "^28.1.0",
    "@types/node": "^17.0.39",
    "dedent": "^1.5.1",
    "jest": "^29.6.2",
    "ts-jest": "^29.1.1",
    "typescript": "^5.2.2"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "pnpm build:lib && pnpm build:esm && pnpm build:declarations",
    "build:declarations": "tsc --emitDeclarationOnly --outDir types",
    "build:esm": "babel src --out-dir esm --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
    "build:lib": "cross-env NODE_ENV=legacy babel src --out-dir lib --extensions '.js,.jsx,.ts,.tsx' --source-maps --delete-dir-on-start",
    "test": "jest --config ./jest.config.js --rootDir src",
    "typecheck": "tsc --noEmit --composite false",
    "watch": "pnpm build:lib --watch & pnpm build:esm --watch & pnpm build:declarations --watch"
  }
}