@360labs/live-transcribe 0.1.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/CHANGELOG.md +41 -0
- package/LICENSE +21 -0
- package/README.md +170 -0
- package/dist/index.d.mts +2689 -0
- package/dist/index.d.ts +2689 -0
- package/dist/index.js +4777 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +4682 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@360labs/live-transcribe",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Professional live speech transcription library for TypeScript/JavaScript with multi-provider support",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/index.d.mts",
|
|
12
|
+
"default": "./dist/index.mjs"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"./package.json": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md",
|
|
24
|
+
"LICENSE",
|
|
25
|
+
"CHANGELOG.md"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "tsup",
|
|
29
|
+
"build:watch": "tsup --watch",
|
|
30
|
+
"dev": "tsup --watch",
|
|
31
|
+
"test": "jest",
|
|
32
|
+
"test:watch": "jest --watch",
|
|
33
|
+
"test:coverage": "jest --coverage",
|
|
34
|
+
"lint": "eslint src/**/*.ts",
|
|
35
|
+
"lint:fix": "eslint src/**/*.ts --fix",
|
|
36
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
37
|
+
"format:check": "prettier --check \"src/**/*.ts\"",
|
|
38
|
+
"typecheck": "tsc --noEmit",
|
|
39
|
+
"clean": "rimraf dist coverage",
|
|
40
|
+
"prepublishOnly": "npm run clean && npm run build && npm run test",
|
|
41
|
+
"prepare": "npm run build",
|
|
42
|
+
"prepack": "npm run build"
|
|
43
|
+
},
|
|
44
|
+
"keywords": [
|
|
45
|
+
"speech-to-text",
|
|
46
|
+
"transcription",
|
|
47
|
+
"live-transcription",
|
|
48
|
+
"speech-recognition",
|
|
49
|
+
"voice",
|
|
50
|
+
"audio",
|
|
51
|
+
"deepgram",
|
|
52
|
+
"assemblyai",
|
|
53
|
+
"web-speech-api",
|
|
54
|
+
"typescript",
|
|
55
|
+
"real-time",
|
|
56
|
+
"streaming",
|
|
57
|
+
"360labs"
|
|
58
|
+
],
|
|
59
|
+
"author": "360labs",
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "https://github.com/360labs/live-transcribe.git"
|
|
64
|
+
},
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://github.com/360labs/live-transcribe/issues"
|
|
67
|
+
},
|
|
68
|
+
"homepage": "https://github.com/360labs/live-transcribe#readme",
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=18.0.0"
|
|
71
|
+
},
|
|
72
|
+
"devDependencies": {
|
|
73
|
+
"@types/jest": "^29.5.0",
|
|
74
|
+
"@types/node": "^20.0.0",
|
|
75
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
76
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
77
|
+
"eslint": "^8.56.0",
|
|
78
|
+
"jest": "^29.7.0",
|
|
79
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
80
|
+
"prettier": "^3.2.0",
|
|
81
|
+
"rimraf": "^5.0.5",
|
|
82
|
+
"ts-jest": "^29.1.0",
|
|
83
|
+
"tsup": "^8.0.0",
|
|
84
|
+
"typescript": "^5.3.0"
|
|
85
|
+
}
|
|
86
|
+
}
|