@ddd-qc/agent-directory 1.165.2 → 1.165.3

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 -4
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -3,8 +3,7 @@
3
3
  A holochain zome module that registers agents to a known directory path on agent init.
4
4
 
5
5
 
6
- # Web API
7
-
6
+ # API
8
7
 
9
8
  ## ViewModel
10
9
  - `subscribe(litElement)`: Have host call this to get updated when data has changed
@@ -13,5 +12,5 @@ A holochain zome module that registers agents to a known directory path on agent
13
12
  - `agents()`: Getter for the list of registered agents.
14
13
 
15
14
 
16
- ## Custom Elements
17
- - `agent-directory-list`: A `ul` of all the AgentPubKeys found by `get_registered_agents()`
15
+ # Custom Elements
16
+ - `<agent-directory-list>`: A `ul` of all the AgentPubKeys found by `get_registered_agents()`
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "@ddd-qc/agent-directory",
3
- "version": "1.165.2",
3
+ "version": "1.165.3",
4
4
  "license" : "CAL-1.0",
5
5
  "keywords": ["holochain", "zome"],
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
8
8
  "typings": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": "./dist/index.js",
11
+ "./agent-directory-list": "./dist/elements/agent-directory-list.js"
12
+ },
9
13
  "files": [
10
14
  "dist"
11
15
  ],