@jennifersoft/jennifer5-agent 5.6.5-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.
package/jennifer.toml ADDED
@@ -0,0 +1,23 @@
1
+ # jennifer5 server address
2
+ server_address = "127.0.0.1"
3
+
4
+ # jennifer5 server port
5
+ server_port = 5000
6
+
7
+ # domain_id
8
+ domain_id = 1000
9
+
10
+ # static instance name
11
+ # inst_name = "inst_name"
12
+
13
+ # instance id, if inst_id is '-1', inst_id will be setted by server
14
+ inst_id = -1
15
+
16
+ # logger output target: stderr | stdout | file
17
+ log_to = "file"
18
+
19
+ # logger level: trace | debug | info | warn | error
20
+ log_level = "info"
21
+
22
+ # log directory when log_to is "file"
23
+ log_dir = "./logs"
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@jennifersoft/jennifer5-agent",
3
+ "version": "5.6.5-1",
4
+ "description": "Jennifer Agent",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "require": "./index.js",
10
+ "import": "./index.js",
11
+ "types": "./index.d.ts"
12
+ }
13
+ },
14
+ "napi": {
15
+ "binaryName": "jennifer5-agent-js",
16
+ "targets": [
17
+ "x86_64-unknown-linux-gnu",
18
+ "x86_64-unknown-linux-musl"
19
+ ]
20
+ },
21
+ "scripts": {
22
+ "artifacts": "napi artifacts",
23
+ "build": "napi build --platform --release --use-napi-cross",
24
+ "build:musl": "napi build --platform --release --target x86_64-unknown-linux-musl -x",
25
+ "build:debug": "napi build --platform",
26
+ "prepublishOnly": "napi prepublish -t npm",
27
+ "test": "bun test",
28
+ "universal": "napi universal",
29
+ "version": "napi version",
30
+ "dev": "napi build --platform --watch"
31
+ },
32
+ "devDependencies": {
33
+ "@napi-rs/cli": "^3.4.1"
34
+ },
35
+ "engines": {
36
+ "node": ">= 18"
37
+ },
38
+ "license": "Apache-2.0",
39
+ "author": "taylor@jennifersoft.com",
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "files": [
44
+ "index.js",
45
+ "index.d.ts",
46
+ "jennifer5-agent-js.linux-x64-gnu.node",
47
+ "jennifer5-agent-js.linux-x64-musl.node",
48
+ "jennifer.toml",
49
+ "LICENSE"
50
+ ],
51
+ "optionalDependencies": {
52
+ "@jennifersoft/jennifer5-agent-linux-x64-gnu": "5.6.5-1",
53
+ "@jennifersoft/jennifer5-agent-linux-x64-musl": "5.6.5-1"
54
+ }
55
+ }