node-nlp-typescript
Advanced tools
Comparing version 0.1.4 to 0.1.5
@@ -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" | ||
} | ||
} |
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
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
8
2591
2
21