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

node-nlp-typescript

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-nlp-typescript - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

dist/index.mjs

7

dist/index.d.ts

@@ -1,5 +0,2 @@

declare class Point {
x: number;
y: number;
move(x: number, y: number): this;
}
export { }
"use strict";
class Point {
x = 0;
y = 0;
move(x, y) {
this.x += x;
this.y += y;
return this;
}
}
{
"name": "node-nlp-typescript",
"version": "0.1.4",
"version": "0.1.5",
"description": "nlp.js from axa-group in typescript 🚀. NLP library for building bots 🤖, with entity extraction, sentiment analysis, automatic language identification, and more. ",
"main": "index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "npx tsc --watch"
"build": "tsup src/**/* --format cjs,esm --dts",
"watch": "tsup src/**/* --format cjs,esm --dts --watch"
},

@@ -22,3 +24,3 @@ "repository": {

"author": "dibodev",
"license": "ISC",
"license": "MIT",
"bugs": {

@@ -29,4 +31,5 @@ "url": "https://github.com/Leoglme/node-nlp-typescript/issues"

"devDependencies": {
"tsup": "^6.7.0",
"typescript": "^5.0.2"
}
}
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