-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (34 loc) · 820 Bytes
/
package.json
File metadata and controls
35 lines (34 loc) · 820 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
{
"name": "@replyke/node",
"version": "6.0.0-beta.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Official NodeJS SDK for Replyke",
"scripts": {
"build": "tsup src/index.ts --dts --format cjs,esm",
"build:types": "tsc --emitDeclarationOnly",
"prepare": "pnpm build && pnpm build:types",
"publish-beta": "pnpm publish --tag beta",
"publish-prod": "pnpm publish"
},
"author": "Replyke team",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"axios": "^1.8.4"
},
"devDependencies": {
"@types/node": "^22.14.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
}
}