sync-content
Version:
Synchronize the contents of one folder to another location, only copying files if contents differ.
67 lines (66 loc) • 1.71 kB
JSON
{
"name": "sync-content",
"version": "2.0.4",
"description": "Synchronize the contents of one folder to another location, only copying files if contents differ.",
"author": "Isaac Z. Schlueter <i@izs.me> (https://blog.izs.me)",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"bin": "./dist/esm/bin.mjs",
"type": "module",
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"files": [
"dist"
],
"license": "BlueOak-1.0.0",
"scripts": {
"preversion": "npm test",
"postversion": "npm publish",
"prepublishOnly": "git push origin --follow-tags",
"prepare": "tshy",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"test": "tap",
"snap": "tap",
"format": "prettier --write . --log-level warn",
"typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
},
"dependencies": {
"glob": "^13.0.1",
"mkdirp": "^3.0.1",
"path-scurry": "^2.0.0",
"rimraf": "^6.0.0"
},
"devDependencies": {
"@types/node": "^25.2.2",
"prettier": "^3.8.1",
"tap": "^21.5.1",
"tshy": "^3.2.0",
"typedoc": "^0.28.16"
},
"engines": {
"node": "20 || >=22"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
},
"repository": "git@github.com/isaacs/sync-content"
}