forked from AssemblyAI/assemblyai-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 890 Bytes
/
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
{
"name": "assemblyai-v2-node-sdk",
"version": "0.0.4",
"description": "An SDK to interact with the AssemblyAI v2 API in typescript/javascript.",
"author": "[email protected]",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"AssemblyAI",
"Transcription",
"SDK"
],
"prettier": "@vercel/style-guide/prettier",
"scripts": {
"build": "npx tsc",
"clean": "rm -rf dist",
"docs": "npx typedoc --out docs src/index.ts",
"lint": "npx eslint .",
"fix": "npx eslint --fix ."
},
"devDependencies": {
"@tsconfig/strictest": "^1.0.1",
"@types/node": "^17.0.35",
"@vercel/style-guide": "^3.0.0",
"eslint": "^8.16.0",
"prettier": "^2.6.2",
"typedoc": "^0.22.15",
"typescript": "^4.6.0"
},
"dependencies": {
"axios": "^0.27.2",
"poll-func": "^1.0.0"
}
}