-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.79 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.79 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
61
62
63
64
65
66
67
68
69
{
"name": "deepinfra",
"version": "2.0.2",
"description": "Official API wrapper for DeepInfra",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deepinfra/deepinfra-node.git"
},
"scripts": {
"build": "tsc && tsc-alias -p tsconfig.json",
"misc": "npx ts-node -r tsconfig-paths/register src/misc.ts",
"prepare": "husky",
"test": "jest --passWithNoTests",
"lint": "eslint . --ext .ts --fix",
"prettier": "prettier --write ./src ./test && prettier --write README.MD",
"build-docs": "typedoc --out docs src",
"predeploy-docs": "npm run build-docs",
"deploy-docs": "npx gh-pages -d docs"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"llm",
"deepinfra",
"api",
"wrapper",
"typesript",
"large language model",
"deep learning",
"machine learning",
"artificial intelligence",
"ai"
],
"author": "Oguz Vuruskaner <ovuruska@gmail.com> (https://www.oguzvuruskaner.com)",
"license": "MIT",
"dependencies": {
"@swc/core": "^1.4.6",
"@swc/wasm": "^1.4.6",
"axios": "^1.6.7",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.26",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.12",
"typescript": "^5.4.2"
}
}