forked from bincooo/claude-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.17 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
{
"name": "claude-api",
"version": "1.0.4",
"description": "slack Authentication Library for ClaudeAI.",
"main": "index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "del build",
"prebuild": "npm run clean",
"predev": "npm run clean"
},
"author": "bincooo",
"license": "MIT",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"files": [
"build"
],
"type": "module",
"source": "./src/index.ts",
"types": "./build/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/bincooo/claude-api.git"
},
"devDependencies": {
"@types/node": "14.18.36",
"del-cli": "^5.0.0",
"tsup": "^6.6.3",
"tsx": "^3.12.1",
"typescript": "^4.9.5",
"@types/uuid": "^9.0.0"
},
"dependencies": {
"@slack/web-api": "^6.8.1",
"delay": "^5.0.0",
"uuid": "^9.0.0",
"p-timeout": "^6.0.0"
},
"bugs": {
"url": "https://github.com/bincooo/claude-api/issues"
},
"homepage": "https://github.com/bincooo/claude-api#readme",
"keywords": [
"ai",
"claude",
"chatgpt"
]
}