-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
154 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,11 @@ | ||
{ | ||
"name": "rclonefile", | ||
"version": "1.0.2", | ||
"description": "macOS API for creating copy on write clones of files", | ||
"repository": "https://github.com/sverrejoh/rclonefile", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"types": "index.d.ts", | ||
"napi": { | ||
"name": "rclonefile", | ||
"triples": { | ||
"additional": [ | ||
"aarch64-apple-darwin", | ||
"x86_64-apple-darwin", | ||
"universal-apple-darwin" | ||
] | ||
} | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@napi-rs/cli": "^2.18.0", | ||
"prettier": "^3.2.5", | ||
"tempy": "^1.0.1", | ||
"vitest": "^1.2.2" | ||
}, | ||
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"scripts": { | ||
"artifacts": "napi artifacts", | ||
"build": "napi build --platform --release", | ||
|
@@ -32,10 +15,26 @@ | |
"universal": "napi universal", | ||
"version": "napi version" | ||
}, | ||
"devDependencies": { | ||
"@napi-rs/cli": "^2.18.0", | ||
"@types/node": "^20.11.19", | ||
"prettier": "^3.2.5", | ||
"prettier-plugin-packagejson": "^2.4.11", | ||
"tempy": "^1.0.1", | ||
"vitest": "^1.2.2" | ||
}, | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
"@types/node": "^20.11.19" | ||
"engines": { | ||
"node": ">= 10" | ||
}, | ||
"repository": "https://github.com/sverrejoh/rclonefile", | ||
"description": "macOS API for creating copy on write clones of files" | ||
"napi": { | ||
"name": "rclonefile", | ||
"triples": { | ||
"additional": [ | ||
"aarch64-apple-darwin", | ||
"x86_64-apple-darwin", | ||
"universal-apple-darwin" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
module.exports = { | ||
overrides: [ | ||
{ | ||
files: "package.json", | ||
options: { | ||
plugins: ["prettier-plugin-packagejson"], | ||
}, | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters