Comparing version 1.0.2 to 1.0.3
/** | ||
* Exports the modules. | ||
* Exports essential modules for various functionalities. | ||
* | ||
@@ -8,40 +8,54 @@ * @module | ||
/** | ||
* The NextChat module for interacting with the ai chat and image models. | ||
* The NextChat module for interacting with AI chat and image models. | ||
* | ||
* @module nextchat | ||
* @see module:nextchat | ||
* @type {Object} | ||
* @type {nextchat} | ||
*/ | ||
nextchat: require('./src/nextchat/main'), | ||
nextchat: require("./lib/nextchat/main"), | ||
/** | ||
* The Discord Webhook module for sending messages to Discord. | ||
* | ||
* @module discordwh | ||
* @see module:discordwh | ||
* @type {Object} | ||
* @type {discordwh} | ||
*/ | ||
discordwh: require('./src/discordwh/main'), | ||
discordwh: require("./lib/discordwh/main"), | ||
/** | ||
* The Rectify module for building web servers. | ||
* | ||
* @module rectify | ||
* @see module:rectify | ||
* @type {Object} | ||
* @type {rectify} | ||
*/ | ||
rectify: require('./src/rectify/main'), | ||
rectify: require("./lib/rectify/main"), | ||
/** | ||
* The Search module for various search functionalities. | ||
* | ||
* @module search | ||
* @see module:search | ||
* @type {Object} | ||
* @type {search} | ||
*/ | ||
search: require('./src/search/main'), | ||
search: require("./lib/search/main"), | ||
/** | ||
* The Xio module for making HTTP requests. | ||
* | ||
* @module xio | ||
* @see module:xio | ||
* @type {Object} | ||
* @type {xio} | ||
*/ | ||
xio: require('./src/xio/main'), | ||
}; | ||
xio: require("./lib/xio/main"), | ||
/** | ||
* The Exe module for executing codes. | ||
* | ||
* @module exe | ||
* @see module:exe | ||
* @type {exe} | ||
*/ | ||
exe: require("./lib/exe/main"), | ||
}; |
{ | ||
"name": "enplex.js", | ||
"version": "1.0.2", | ||
"description": "Enplex is a versatile JavaScript library that simplifies complex development tasks. By providing a unified interface for multiple APIs and services, Enplex empowers developers to build innovative solutions efficiently.", | ||
"version": "1.0.3", | ||
"description": "Enplex is a versatile JavaScript library. providing a unified interface for multiple APIs and services, Enplex empowers developers to build innovative solutions efficiently.", | ||
"main": "compiler.js", | ||
@@ -10,4 +10,6 @@ "module": "compiler.es.mjs", | ||
".": { | ||
"import": "./compiler.es.mjs", | ||
"require": "./compiler.js" | ||
}, | ||
"esm": { | ||
"import": "./compiler.es.mjs" | ||
} | ||
@@ -73,4 +75,4 @@ }, | ||
"devDependencies": { | ||
"@types/node": "^18.11.18" | ||
"@types/node": "^22.9.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
1
11
49283
14
1129