-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@moveyourdigital/nlp",
"version": "0.1.4",
"description": "NLP (natural language processing) for server and the browser in TypeScript. All lightweight and super-fast.",
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"main": "./dist/index.cjs",
"types": "dist/index.d.ts",
"scripts": {
"start": "microbundle watch",
"build": "microbundle",
"lint": "eslint src",
"test": "esrun src/index.test.ts"
},
"keywords": [
"nlp",
"natural language processing",
"sentiment analysis",
"word vector",
"text classification",
"tokenization",
"naive bayes",
"english",
"portuguese"
],
"author": "Vitor Carvalho <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/moveyourdigital/nlp",
"repository": {
"type": "git",
"url": "git+https://github.com/moveyourdigital/nlp.git"
},
"bugs": {
"url": "https://github.com/moveyourdigital/nlp/issues"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^20.14.2",
"eslint": "^9.7.0",
"esrun": "^3.2.26",
"globals": "^15.8.0",
"microbundle": "^0.15.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.17.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}