-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.86 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
69
70
71
72
73
74
{
"name": "gigachat",
"version": "0.0.12",
"description": "The official TypeScript library for the GigaChat API",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"type": "commonjs",
"repository": "github:ai-forever/gigachat-js",
"scripts": {
"format": "prettier --write --cache --cache-strategy metadata . !dist",
"lint": "./scripts/lint",
"fix": "./scripts/format",
"build": "./scripts/build"
},
"private": false,
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"uuid": "^11.0.3"
},
"imports": {
"gigachat": ".",
"gigachat/*": "./src/*"
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./*.mjs": {
"types": "./dist/*.d.ts",
"default": "./dist/*.mjs"
},
"./*.js": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"./interfaces/*": {
"types": "./dist/interfaces/*.d.ts",
"require": "./dist/interfaces/*.js",
"default": "./dist/interfaces/*.mjs"
},
"./interfaces": {
"types": "./dist/interfaces/index.d.ts",
"require": "./dist/interfaces/index.js",
"default": "./dist/interfaces/index.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"default": "./dist/*.mjs"
}
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.3.3",
"prettier-2": "^99.9.9",
"ts-node": "^10.9.2",
"tsc-multi": "^1.1.0",
"typescript": "^5.6.3"
}
}