-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpackage.json
31 lines (31 loc) · 925 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
{
"name": "@anthropic-ai/sdk",
"version": "0.2.1",
"description": "Library for accessing the Anthropic API",
"repository": "https://github.com/anthropics/anthropic-sdk-typescript",
"license": "MIT",
"private": false,
"main": "build/src/index.js",
"files": [
"build/src/**.js"
],
"scripts": {
"build": "tsc --build",
"lint": "eslint src && prettier --check .",
"format": "prettier --write .",
"example:basic_stream": "tsc --build && node ./build/examples/basic_stream.js",
"example:basic_sync": "tsc --build && node ./build/examples/basic_sync.js"
},
"dependencies": {
"@fortaine/fetch-event-source": "^3.0.6",
"eslint": "^8.33.0",
"prettier": "^2.8.3"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"dotenv": "^16.0.3",
"typescript": "^4.9.4"
}
}