forked from Dheeraj-Bhandari/monsterapiclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.82 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
{
"name": "monsterapi",
"version": "0.0.4",
"description": "monsterapi is a JavaScript client library for interacting with the Monster API. It provides an easy way to access the API's features and integrate them into your applications.",
"documentation": "https://developer.monsterapi.ai/reference/getting-started-1",
"homepage": "https://monsterapi.ai",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "mocha --require ts-node/register lib/__tests__/**/*.js",
"prepare": "npm run build",
"build": "tsc -p tsconfig.json",
"build:test": "tsc -p tsconfig.test.json"
},
"author": "Dheeraj Bhandari <howtotech000@gmail.com>",
"bugs": {
"url": "https://github.com/DheerajQblocks/monsterapiclient/issues"
},
"license": "MIT",
"dependencies": {
"chai": "^4.3.10",
"mime": "^3.0.0",
"mocha": "^10.2.0",
"node-fetch": "^2.7.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/fs-extra": "^11.0.3",
"@types/mocha": "^10.0.2",
"@types/node": "^16.18.55",
"@types/node-fetch": "^2.6.6",
"@types/sinon": "^10.0.17",
"@types/uuid": "^9.0.5",
"dotenv": "^16.3.1",
"fetch-mock": "^9.11.0",
"sinon": "^16.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"lib/**/*"
],
"keywords": [
"genai",
"ai",
"machine learning",
"text generation",
"image generation",
"speech generation",
"models",
"falcon-7b-instruct",
"mpt-7b-instruct",
"llama2-7b-chat",
"falcon-40b-instruct",
"mpt-30b-instruct",
"txt2img",
"sdxl",
"pix2pix",
"img2img",
"sunoai-bark",
"whisper",
"monsterapi",
"monsterai",
"genrativeaiapi",
"generativeAI"
]
}