-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.69 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.69 KB
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
{
"name": "@saladtechnologies-oss/salad-cloud-transcription-sdk",
"version": "0.9.0-alpha.1",
"description": "The SaladCloud Transcription SDK. Please refer to the [SaladCloud API Documentation](https://docs.salad.com/api-reference) for more details.",
"main": "./dist/node/index.js",
"module": "./dist/browser/index.mjs",
"browser": {
"./src/transcription/node/utils.ts": "./src/transcription/utils/utils.ts"
},
"unpkg": "./dist/browser/index.js",
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"scripts": {
"test": "vitest run",
"build:node": "tsup src/index.ts --format cjs,esm --dts --out-dir dist/node --target node14 --clean",
"build:browser": "tsup src/index.ts --platform browser --format cjs,esm --dts --out-dir dist/browser --target es2018 --clean",
"build": "npm run build:node && npm run build:browser"
},
"keywords": [
"transcription",
"typescript",
"sdk",
"api",
"client"
],
"files": [
"README.md",
"dist"
],
"author": "SaladCloud Support",
"homepage": "https://github.com/saladtechnologies/salad-cloud-transcription-sdk-javascript",
"license": "MIT",
"devDependencies": {
"@types/node": "22.13.10",
"eslint": "9.22.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-prettier": "5.2.3",
"prettier": "3.5.3",
"tsup": "8.4.0",
"typescript": "5.8.2",
"vitest": "3.0.9"
},
"dependencies": {
"@saladtechnologies-oss/salad-cloud-sdk": "0.9.0-alpha.13",
"axios": "1.8.3",
"form-data": "4.0.2",
"fast-sha256": "1.3.0",
"zod": "3.24.2"
},
"exports": {
".": {
"browser": "./dist/browser/index.js",
"default": "./dist/node/index.js"
}
}
}