Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

system-clock

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

system-clock - npm Package Compare versions

Comparing version
1.0.1
to
1.0.2
prebuilds/win32-x64/system-clock.node

Sorry, the diff of this file is too big to display

+8
-2

@@ -1,2 +0,8 @@

const systemClock = require('./build/Release/system-clock.node')
module.exports = systemClock
// const systemClock = require("./build/Release/system-clock.node");
// module.exports = systemClock;
// Will load a compiled build if present or a prebuild.
// If no build if found it will throw an exception
const binding = require("node-gyp-build")(__dirname);
module.exports = binding;
+7
-3
{
"name": "system-clock",
"version": "1.0.1",
"version": "1.0.2",
"description": "set system time, date and zone in os Windows",

@@ -9,2 +9,4 @@ "repository": "https://github.com/sid-max1996/system-clock.git",

"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi",
"build": "node-gyp rebuild",

@@ -16,7 +18,9 @@ "clean": "node-gyp clean"

"devDependencies": {
"node-gyp": "^5.0.3"
"node-gyp": "^9.3.0",
"prebuildify": "^6.0.1"
},
"dependencies": {
"node-addon-api": "^1.7.1"
"node-addon-api": "^1.7.1",
"node-gyp-build": "^4.8.4"
}
}