forked from cohere-ai/cohere-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.6 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
{
"name": "cohere-ai",
"version": "6.2.2",
"description": "A Node.js SDK with TypeScript support for the Cohere API.",
"homepage": "https://docs.cohere.ai",
"main": "index.js",
"types": "dist/cohere.d.ts",
"typings": "dist/cohere.d.ts",
"scripts": {
"build": "webpack --env production && mv cohere.d.ts dist/cohere.d.ts && rm services/*.d.ts && rm models/*.d.ts",
"dev": "webpack --progress --env development --env nodemon",
"test": "mocha -r ts-node/register test/test.ts",
"lint": "eslint . --ext .ts && prettier --check .",
"lint:fix": "prettier --write ."
},
"files": [
"/dist"
],
"keywords": [
"sdk",
"cohere",
"cohere.ai",
"javascript",
"node.js",
"typescript",
"sdk",
"api",
"natural",
"language"
],
"author": "Cohere AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cohere-ai/cohere-node.git"
},
"bugs": {
"url": "https://github.com/cohere-ai/cohere-node/issues"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^8.1.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-webpack-plugin": "^2.5.4",
"mocha": "^10.0.0",
"nodemon-webpack-plugin": "^4.5.2",
"prettier": "^2.7.1",
"ts-loader": "^9.1.2",
"ts-node": "^10.8.1",
"typescript": "^4.9.5",
"webpack": "^5.37.0",
"webpack-cli": "^4.9.1"
}
}