-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 924 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 924 Bytes
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
{
"name": "@green-api/maxbot-api-client-ts",
"version": "1.0.0",
"description": "TypeScript SDK for MAX Bot API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "GREEN-API",
"repository": {
"type": "git",
"url": "https://github.com/green-api/maxbot-api-client-ts.git"
},
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/node": "^25.5.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
}
}