@felipenmoura/laya-node 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +21 -1
package/README.md CHANGED
@@ -14,8 +14,9 @@ Laya is a non-autoregressive decision model designed for text classification, em
14
14
  ## Installation
15
15
 
16
16
  ```bash
17
- npm install
18
- # or
17
+ git clone git@github.com:felipenmoura/laya-node.git
18
+ cd laya-node
19
+
19
20
  pnpm install
20
21
  ```
21
22
 
package/package.json CHANGED
@@ -1,11 +1,31 @@
1
1
  {
2
2
  "name": "@felipenmoura/laya-node",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Node wrapper for laya text classification",
5
5
  "license": "MIT",
6
6
  "author": "Felipe N. Moura",
7
7
  "main": "index.js",
8
8
  "type": "module",
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "repository": {
13
+ "url": "https://github.com/felipenmoura/laya-node",
14
+ "type": "git"
15
+ },
16
+ "keywords": [
17
+ "laya",
18
+ "node",
19
+ "ai",
20
+ "text classification",
21
+ "decisions",
22
+ "routing",
23
+ "model",
24
+ "javascript",
25
+ "wrapper",
26
+ "api",
27
+ "http"
28
+ ],
9
29
  "scripts": {
10
30
  "start": "node index.js",
11
31
  "stop": "node index.js --stop",