{
  "name": "@pinceau/style-dictionary",
  "version": "4.0.9",
  "description": "Style once, use everywhere. A build system for creating cross-platform styles.",
  "keywords": [
    "style dictionary",
    "style",
    "dictionary",
    "amazon",
    "css",
    "design",
    "tokens",
    "sass",
    "scss",
    "iOS",
    "Android",
    "react",
    "react native",
    "style guide"
  ],
  "type": "module",
  "module": "./lib/StyleDictionary.js",
  "main": "./lib/StyleDictionary.js",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "require": "./lib/StyleDictionary.js",
      "import": "./lib/StyleDictionary.js"
    },
    "./fs": {
      "node": "./fs-node.mjs",
      "require": "./fs-node.cjs",
      "default": "./fs.cjs",
      "import": "./fs.mjs"
    },
    "./utils": "./lib/utils/index.js"
  },
  "bin": {
    "style-dictionary": "./bin/style-dictionary.js"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "bin",
    "lib",
    "fs.cjs",
    "fs.mjs",
    "fs-node.cjs",
    "fs-node.mjs",
    "LICENSE",
    "NOTICE",
    "types"
  ],
  "scripts": {
    "format": "run-p format:*",
    "format:eslint": "eslint --fix \"**/*.js\"",
    "format:prettier": "prettier \"**/*.{js,md}\" \"package.json\" --write",
    "lint": "run-p lint:*",
    "lint:eslint": "eslint \"**/*.js\"",
    "lint:prettier": "prettier \"**/*.{js,md}\" \"package.json\" --list-different || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
    "lint:prettier:fix": "prettier \"**/*.{js,md}\" \"package.json\" --list-different -w || (echo '↑↑ these files are not prettier formatted ↑↑' && exit 1)",
    "test": "npm run test:browser && npm run test:node",
    "test:browser": "web-test-runner --coverage",
    "test:browser:coverage": "cd coverage/lcov-report && npx http-server -o -c-1",
    "test:browser:watch": "web-test-runner --watch",
    "test:browser:update-snapshots": "web-test-runner --update-snapshots",
    "test:node": "mocha -r mocha-hooks.mjs './__integration__/**/*.test.js' './__tests__/**/*.test.js' './__node_tests__/**/*.test.js'",
    "generate-docs": "node ./scripts/generateDocs.js",
    "serve-docs": "docsify serve docs -p 3000 -P 12345",
    "install-cli": "npm install -g $(npm pack)",
    "release": "node scripts/inject-version.js && changeset publish",
    "prepare": "husky install && patch-package"
  },
  "standard-version": {
    "scripts": {
      "postbump": "node ./scripts/version.js && npm run generate-docs"
    }
  },
  "jest": {
    "verbose": false,
    "collectCoverageFrom": [
      "lib/**/*.js"
    ],
    "coverageReporters": [
      "html"
    ],
    "coverageDirectory": "docs/coverage",
    "roots": [
      "__tests__",
      "__integration__"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/__tests__/__setup.js"
    ],
    "testPathIgnorePatterns": [
      "/__tests__/__setup.js",
      "/__tests__/__helpers.js",
      "/__tests__/__assets/",
      "/__tests__/__configs/",
      "/__tests__/__json_files/",
      "/__tests__/__tokens/",
      "/__tests__/__output/",
      "/__tests__/formats/__constants.js"
    ],
    "transform": {
      "^.+\\.json5$": "json5-jest",
      "^.+\\.jsonc$": "json5-jest",
      "^.+\\.jsx?$": "babel-jest"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint",
      "prettier --list-different"
    ],
    "*.md": "prettier --list-different"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "always",
    "trailingComma": "all",
    "printWidth": 100
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/amzn/style-dictionary.git"
  },
  "author": "Amazon",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/amzn/style-dictionary/issues"
  },
  "contributors": [
    "Yuliya Baran <baranyu@amazon.com>",
    "Charles Dorner <dornerc@amazon.com>",
    "Dustin Boudreau <boudrd@amazon.com>",
    "Danny Banks <djb@amazon.com>",
    "Joren Broekema <joren.broekema@gmail.com>"
  ],
  "homepage": "https://github.com/amzn/style-dictionary",
  "dependencies": {
    "@bundled-es-modules/deepmerge": "^4.3.1",
    "@bundled-es-modules/glob": "^10.3.5",
    "@bundled-es-modules/memfs": "^4.2.3",
    "@bundled-es-modules/path-browserify": "^1.0.2",
    "chalk": "^5.3.0",
    "change-case": "^4.1.2",
    "commander": "^8.3.0",
    "fs-extra": "^10.0.0",
    "is-plain-object": "^5.0.0",
    "json5": "^2.2.2",
    "jsonc-parser": "^3.0.0",
    "lodash": "^4.17.15",
    "lodash-es": "^4.17.21",
    "tinycolor2": "^1.6.0",
    "url": "^0.11.1"
  },
  "devDependencies": {
    "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
    "@changesets/cli": "^2.26.2",
    "@commitlint/cli": "^16.1.0",
    "@commitlint/config-conventional": "^16.0.0",
    "@esm-bundle/chai-as-promised": "^7.1.1",
    "@types/chai": "^4.3.9",
    "@web/test-runner": "^0.18.0",
    "@web/test-runner-commands": "^0.9.0",
    "@web/test-runner-playwright": "^0.11.0",
    "chai": "^5.0.0-alpha.2",
    "chai-as-promised": "npm:@esm-bundle/chai-as-promised@^7.1.1",
    "docsify": "^4.12.2",
    "docsify-cli": "^4.4.3",
    "eslint": "^8.7.0",
    "eslint-config-react-app": "^7.0.1",
    "eslint-plugin-jest": "^26.0.0",
    "hanbi": "^1.0.1",
    "husky": "^8.0.3",
    "jsdoc-escape-at": "^1.0.1",
    "jsdoc-to-markdown": "^7.1.0",
    "json5-jest": "^1.0.1",
    "less": "^4.1.2",
    "lint-staged": "^12.3.1",
    "mocha": "^10.2.0",
    "npm-run-all": "^4.1.5",
    "patch-package": "^8.0.0",
    "prettier": "^3.0.3",
    "sass": "^1.69.5",
    "standard-version": "^9.3.2",
    "stylus": "^0.56.0",
    "yaml": "^2.3.4"
  }
}
