@dieulc/pi-office-protocol 0.2.0 → 0.3.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/package.json CHANGED
@@ -1,22 +1,29 @@
1
1
  {
2
2
  "name": "@dieulc/pi-office-protocol",
3
- "version": "0.2.0",
4
- "description": "Shared bridge wire protocol between the pi-office-bridge Pi extension and the pi-for-office task-pane add-in.",
3
+ "version": "0.3.0",
4
+ "description": "Shared bridge wire protocol + office op catalog between the pi-office-bridge Pi extension and the pi-for-office task-pane add-in.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "main": "./src/protocol.ts",
8
8
  "types": "./src/protocol.ts",
9
9
  "exports": {
10
- ".": "./src/protocol.ts"
10
+ ".": "./src/protocol.ts",
11
+ "./office-catalog": "./src/office-catalog.ts"
11
12
  },
12
13
  "files": [
13
14
  "src/protocol.ts",
15
+ "src/office-catalog.ts",
14
16
  "README.md"
15
17
  ],
16
18
  "publishConfig": {
17
19
  "access": "public"
18
20
  },
21
+ "dependencies": {
22
+ "typebox": "^1.3.10"
23
+ },
19
24
  "scripts": {
20
- "typecheck": "tsc --noEmit"
25
+ "typecheck": "tsc --noEmit",
26
+ "build": "tsc --noEmit",
27
+ "test": "node --test --experimental-strip-types tests/office-catalog.test.ts"
21
28
  }
22
- }
29
+ }