@absolutejs/meeting 0.0.1-beta.8 → 0.0.1-beta.9

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 (3) hide show
  1. package/dist/index.js +0 -15
  2. package/dist/manifest.js +31 -8569
  3. package/package.json +29 -11
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@absolutejs/meeting",
3
- "version": "0.0.1-beta.8",
3
+ "version": "0.0.1-beta.9",
4
4
  "description": "Meeting-bot core for AbsoluteJS — join a call (via a source adapter), transcribe it live with the voice scribe, and surface diarized turns + participants for analysis",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "https://github.com/absolutejs/meeting.git"
7
+ "url": "git+https://github.com/absolutejs/meeting.git"
8
8
  },
9
9
  "homepage": "https://github.com/absolutejs/meeting",
10
10
  "bugs": {
@@ -30,25 +30,43 @@
30
30
  "license": "BSL-1.1",
31
31
  "author": "Alex Kahn",
32
32
  "absolutejs": {
33
- "manifestContract": 2
33
+ "manifestContract": 2,
34
+ "runtimePeers": {
35
+ "@absolutejs/voice": {
36
+ "artifactImports": [
37
+ "@absolutejs/voice"
38
+ ],
39
+ "buildExternals": [
40
+ "@absolutejs/voice",
41
+ "@absolutejs/voice/*"
42
+ ],
43
+ "optional": false,
44
+ "range": ">=0.0.22-beta.647 <0.1",
45
+ "tested": "0.0.22-beta.647"
46
+ }
47
+ }
34
48
  },
35
49
  "scripts": {
36
- "build": "rm -rf dist && bun build ./src/index.ts ./src/manifest.ts --outdir dist --root src --target bun --external @absolutejs/voice && tsc --emitDeclarationOnly --project tsconfig.json && absolute-manifest emit",
50
+ "build": "rm -rf dist && bun build ./src/index.ts ./src/manifest.ts --outdir dist --root src --target bun --external @absolutejs/manifest --external '@absolutejs/manifest/*' --external @absolutejs/voice --external '@absolutejs/voice/*' --external @sinclair/typebox --external '@sinclair/typebox/*' && tsc --emitDeclarationOnly --project tsconfig.json && absolute-manifest emit",
37
51
  "format": "prettier --write \"./**/*.{js,ts,json,md}\"",
38
- "release": "bun run format && bun run build && bun publish",
52
+ "release": "bun run check:package && npm publish --access public --tag beta",
39
53
  "test": "bun test",
40
- "typecheck": "bun run tsc --noEmit"
54
+ "typecheck": "bun run tsc --noEmit",
55
+ "verify-package": "absolute-manifest verify-package",
56
+ "check:package": "bun run format && bun run typecheck && bun run test && bun run verify-package && bun run build && bun run verify-package --artifacts"
41
57
  },
42
58
  "dependencies": {
43
- "@absolutejs/manifest": "^0.4.0",
44
- "@sinclair/typebox": "^0.34.0"
59
+ "@absolutejs/manifest": "0.7.2",
60
+ "@sinclair/typebox": "0.34.52"
45
61
  },
46
62
  "devDependencies": {
47
- "@absolutejs/voice": "0.0.22-beta.644",
48
- "@types/bun": "1.3.9",
63
+ "@absolutejs/voice": "0.0.22-beta.647",
64
+ "@types/bun": "1.3.14",
65
+ "elysia": "1.4.29",
66
+ "prettier": "3.9.6",
49
67
  "typescript": "^5.9.3"
50
68
  },
51
69
  "peerDependencies": {
52
- "@absolutejs/voice": ">=0.0.22-beta.644 <0.1"
70
+ "@absolutejs/voice": ">=0.0.22-beta.647 <0.1"
53
71
  }
54
72
  }