-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
37 lines (37 loc) · 990 Bytes
/
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
{
"name": "claude-ai",
"type": "module",
"version": "1.2.2",
"description": "Unofficial library for interacting with Claude AI",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"prepublishOnly": "tsc --declaration --allowJs --emitDeclarationOnly index.js",
"publish": "git add . && git commit -m '📦 Release' && npm publish && cd cli && npm publish && git push"
},
"repository": {
"type": "git",
"url": "https://github.com/Explosion-Scratch/claude-unofficial-api.git"
},
"homepage": "https://github.com/Explosion-Scratch/claude-unofficial-api#readme",
"keywords": [
"claude",
"claude-ai",
"ai",
"chatbot",
"api",
"unofficial"
],
"author": "@Explosion-Scratch",
"license": "Unlicense",
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"typescript": "^5.1.6"
}
}