filetime
Version:
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.
54 lines • 1.26 kB
JSON
{
"name": "filetime",
"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",
"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"
],
"optionalDependencies": {
"filetime-win32-x64-msvc": "0.1.0",
"filetime-darwin-x64": "0.1.0",
"filetime-linux-x64-gnu": "0.1.0",
"filetime-darwin-arm64": "0.1.0"
}
}