{
  "name": "@silane/datetime",
  "version": "1.5.2",
  "description": "Date and time library similar to Python's \"datetime\" package.",
  "type": "module",
  "types": "./types/index.d.ts",
  "module": "./src/index.js",
  "main": "./lib/index.cjs",
  "exports": {
    "types": "./types/index.d.ts",
    "import": "./src/index.js",
    "require": "./lib/index.cjs"
  },
  "scripts": {
    "test": "jest",
    "build": "npm run build:cjs && npm run build:browser && npm run build:types",
    "build:cjs": "babel src --env-name node-cjs --out-dir lib --out-file-extension .cjs",
    "build:browser": "rollup -c",
    "build:types": "tsc",
    "prepublishOnly": "npm test && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/silane/datetime-js.git"
  },
  "keywords": [
    "temporal",
    "moment",
    "datetime",
    "date",
    "time",
    "timedelta",
    "duration",
    "timezone",
    "python",
    "esmodule",
    "commonjs",
    "browser",
    "typescript"
  ],
  "homepage": "https://github.com/silane/datetime-js",
  "author": "silane",
  "files": [
    "package.json",
    "README.md",
    "LICENSE",
    "src/*",
    "lib/*",
    "umd/*",
    "types/*"
  ],
  "license": "Apache-2.0",
  "devDependencies": {
    "@babel/cli": "^7.25.6",
    "@babel/core": "^7.25.2",
    "@babel/plugin-transform-modules-commonjs": "^7.24.8",
    "@babel/preset-env": "^7.25.4",
    "@jest/globals": "^29.7.0",
    "@rollup/plugin-babel": "^6.0.4",
    "@rollup/plugin-commonjs": "^28.0.0",
    "@rollup/plugin-node-resolve": "^15.3.0",
    "babel-jest": "^29.7.0",
    "babel-plugin-replace-import-extension": "^1.1.4",
    "core-js": "^3.38.1",
    "jest": "^29.7.0",
    "rollup": "^4.22.5",
    "typescript": "^5.6.2"
  }
}
