-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.66 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@dyte-in/symbl-transcription",
"version": "2.2.1",
"description": "Audio middleware to generate transcriptions using Symbl.ai APIs",
"types": "./types/index.d.ts",
"main": "./dist/index.cjs.js",
"browser": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./types/index.d.ts"
}
},
"files": [
"dist",
"types",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dyte-in/symbl-transcription.git"
},
"bugs": {
"url": "https://community.dyte.io"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"author": "",
"license": "ISC",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --ext .js --fix",
"build": "tsc && vite build && vite build -c vite.umd.config.ts",
"prepare": "is-ci || husky install",
"prepublishOnly": "cp package.json package.json.bak && node prepublish.js",
"postpublish": "mv package.json.bak package.json",
"dev": "vite"
},
"peerDepdendencies": {
"@dytesdk/web-core": ">=0.26.0"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@dytesdk/ui-kit": "^1.59.0",
"@dytesdk/web-core": "1.20.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.1",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/events": "^3.0.0",
"@types/jest": "^27.0.6",
"@types/lodash-es": "^4.17.12",
"@types/long": "4.0.0",
"@types/node": "^16.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"jest": "^27.0.6",
"jsdoc-to-markdown": "^7.1.1",
"npm-install-peers": "^1.2.2",
"semantic-release": "^17.4.7",
"serve": "^12.0.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"type-fest": "^2.12.1",
"typescript": "^4.7.0",
"vite": "^2.6.14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}