{
  "name": "@filetime/core",
  "version": "0.1.0",
  "description": "Rust addon to change the creation time (btime), modified time (mtime), and access time (atime) of files, directories, and symbolic links on Windows, macOS, and Linux.",
  "main": "index.js",
  "types": "index.d.ts",
  "napi": {
    "name": "filetime",
    "triples": {
      "additional": [
        "aarch64-apple-darwin"
      ]
    }
  },
  "license": "MIT",
  "repository": "https://github.com/yejimeiming/filetime.git",
  "devDependencies": {
    "@napi-rs/cli": "^2.18.4",
    "ava": "^6.0.1"
  },
  "ava": {
    "timeout": "3m"
  },
  "engines": {
    "node": ">= 10"
  },
  "scripts": {
    "artifacts": "napi artifacts",
    "build": "napi build --platform --release",
    "build:debug": "napi build --platform",
    "--prepublishOnly": "npm run build && npm run test && napi prepublish -t npm",
    "test": "ava",
    "universal": "napi universal",
    "version": "napi version"
  },
  "packageManager": "yarn@4.5.0",
  "files": [
    "index.d.ts",
    "index.js"
  ],
  "keywords": [
    "utime",
    "utimes",
    "filetime",
    "btime",
    "mtime",
    "atime"
  ]
}