Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

contential

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contential - npm Package Compare versions

Comparing version 0.0.15 to 0.0.17

CHANGELOG.md

11

dist/index.d.ts

@@ -1,4 +0,9 @@

declare const contential: () => void;
declare const contentialChat: () => void;
import * as _contential_prompt from '@contential/prompt';
import * as _contential_chat from '@contential/chat';
export { contential, contentialChat, contential as default };
declare const contential: {
chat: (options: _contential_chat.ChatOptions) => Promise<void>;
prompt: (options: _contential_prompt.PromptOptions) => Promise<void>;
};
export { contential, contential as default };

@@ -24,3 +24,2 @@ "use strict";

contential: () => contential,
contentialChat: () => contentialChat,
default: () => src_default

@@ -30,13 +29,15 @@ });

var import_chat = require("@contential/chat");
var contential = () => {
console.log("contential");
var import_prompt = require("@contential/prompt");
var chatClient = (0, import_chat.getClient)();
var chat = chatClient.chat;
var promptClient = (0, import_prompt.getClient)();
var prompt = promptClient.prompt;
var contential = {
chat,
prompt
};
var contentialChat = () => {
(0, import_chat.chat)();
};
var src_default = contential;
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
contential,
contentialChat
contential
});
{
"name": "contential",
"version": "0.0.15",
"version": "0.0.17",
"license": "MIT",

@@ -10,21 +10,13 @@ "main": "dist/index.js",

"dependencies": {
"@contential/chat": "0.0.0"
"@contential/chat": "0.0.5",
"@contential/prompt": "0.0.14"
},
"devDependencies": {
"eslint": "^7.32.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"tsup": "^7.1.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"tsconfig": "0.0.0",
"eslint-config-custom": "0.0.0"
},
"scripts": {
"dev": "tsup src/index.ts --dts --watch",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"clean": "rimraf dist",
"build": "npm-run-all clean build:main",
"build:main": "tsup src/index.ts --format cjs,esm --dts",
"lint": "eslint \"**/*.ts*\""
"lint": "eslint \"**/*.ts*\"",
"publish:prod": "changeset version && changeset publish"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc