-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.1 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.1 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
57
58
59
60
{
"name": "cohere-ai",
"version": "7.20.1",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/cohere-ai/cohere-typescript.git"
},
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"format": "biome format --write --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"format:check": "biome format --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"lint": "biome lint --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"lint:fix": "biome lint --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"check": "biome check --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"check:fix": "biome check --fix --unsafe --skip-parse-errors --no-errors-on-unmatched --max-diagnostics=none",
"build": "tsc",
"prepack": "cp -rv dist/. .",
"test": "vitest",
"test:unit": "vitest --project unit",
"test:wire": "vitest --project wire"
},
"dependencies": {
"readable-stream": "^4.7.0",
"@aws-sdk/client-sagemaker": "^3.583.0",
"@aws-sdk/credential-providers": "^3.583.0",
"@aws-crypto/sha256-js": "^5.2.0",
"@smithy/protocol-http": "^5.1.2",
"@smithy/signature-v4": "^5.1.2",
"convict": "^6.2.4",
"form-data": "^4.0.4",
"form-data-encoder": "^4.1.0",
"formdata-node": "^6.0.3"
},
"devDependencies": {
"webpack": "^5.91.0",
"ts-loader": "^9.5.1",
"vitest": "^3.2.4",
"msw": "2.11.2",
"@types/node": "^18.19.70",
"typescript": "~5.7.2",
"@biomejs/biome": "2.3.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"@types/readable-stream": "^4.0.14",
"@types/convict": "^6.1.6"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"stream": false
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false
}