{
  "name": "@plist/openstep.serialize",
  "version": "1.1.1",
  "description": "TypeScript library for serializing OpenStep/NEXTStep Property Lists, in browser and node.js.",
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "types": "./lib/esm/index.d.ts",
  "exports": {
    ".": {
      "require": "./lib/cjs/index.js",
      "import": "./lib/esm/index.js",
      "types": "./lib/esm/index.d.ts"
    }
  },
  "type": "module",
  "keywords": [
    "serialize",
    "plist",
    "propertylist",
    "openstep",
    "nextstep",
    "typescript",
    "browser",
    "node",
    "apple",
    "macos",
    "ios"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/mat-sz/plist.git"
  },
  "bugs": {
    "url": "https://github.com/mat-sz/plist/issues"
  },
  "scripts": {
    "prepare": "npm run build",
    "build": "npm run build:cjs && npm run build:esm",
    "build:esm": "tsc --module esnext --outDir lib/esm && echo '{\"type\": \"module\"}' > lib/esm/package.json",
    "build:cjs": "tsc --module commonjs --outDir lib/cjs && echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
    "lint": "eslint src"
  },
  "homepage": "https://github.com/mat-sz/plist",
  "author": "Mat Sz <contact@matsz.dev>",
  "license": "BSD-3-Clause-Clear",
  "dependencies": {
    "@plist/common": "^1.1.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
