pingerchips-js-server 2.0.0 → 3.0.0
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/README.md +147 -61
- package/agent-session.js +212 -0
- package/index.js +866 -93
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pingerchips-js-server",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "Pingerchips server SDK for Node.js - trigger events and
|
|
3
|
+
"version": "3.0.0",
|
|
4
|
+
"description": "Pingerchips server SDK for Node.js - trigger events and issue capability tokens",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"test": "
|
|
8
|
+
"test": "node --test test/*.test.js"
|
|
9
9
|
},
|
|
10
10
|
"keywords": [
|
|
11
11
|
"pingerchips",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"author": "Pingerchips",
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"
|
|
21
|
+
"phoenix": "^1.7.0"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
@@ -29,6 +29,6 @@
|
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://pingerchips.com",
|
|
31
31
|
"engines": {
|
|
32
|
-
"node": ">=
|
|
32
|
+
"node": ">=18.0.0"
|
|
33
33
|
}
|
|
34
34
|
}
|