New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.1 to 0.0.2-test

.turbo/turbo-build.log

54

dist/index.js
"use strict";
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
Object.defineProperty(exports, "__esModule", {
value: true
// src/index.ts
var src_exports = {};
__export(src_exports, {
contential: () => contential,
contentialChat: () => contentialChat,
contentialSendMessage: () => contentialSendMessage,
default: () => src_default
});
exports.sayHello = void 0;
module.exports = __toCommonJS(src_exports);
var sayHello = function sayHello() {
console.log('Hello!');
// ../chat/src/index.ts
var chat = () => {
console.log("@contential/chat 2");
};
var sendMessage = () => {
console.log("Send message 2");
};
exports.sayHello = sayHello;
// src/index.ts
var contential = () => {
console.log("contential");
};
var contentialChat = () => {
chat();
};
var contentialSendMessage = () => {
sendMessage();
};
var src_default = contential;
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
contential,
contentialChat,
contentialSendMessage
});

49

package.json
{
"name": "contential",
"version": "0.0.1",
"description": "JavaScript client for Contential.",
"author": "Tom Andre",
"license": "ISC",
"version": "0.0.2-test",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"private": false,
"main": "./dist/contential.js",
"scripts": {
"build": "babel src -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"prepublish": "npm run build",
"repository": {
"type": "git",
"url": "git+https://github.com/contential/contential-js.git"
},
"bugs": {
"url": "https://github.com/contential/contential-js/issues"
},
"homepage": "https://github.com/contential/contential-js#readme",
"dependencies": {
"axios": "^0.19.1",
"querystring": "^0.2.0"
"@contential/chat": "^0.0.1-test"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"nodemon": "^1.18.9"
"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",
"eslint-config-custom": "0.0.0",
"tsconfig": "0.0.0"
},
"scripts": {
"dev": "tsup src/index.ts --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*\""
}
}
}
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