-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.69 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
56
57
58
59
60
61
62
63
64
{
"name": "anthropic-fetch",
"type": "module",
"version": "3.1.0",
"description": "Anthropic client powered by fetch",
"repository": "dexaai/anthropic-fetch",
"license": "MIT",
"author": {
"name": "Riley Tomasek",
"email": "[email protected]",
"url": "https://rile.yt"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"sideEffects": false,
"files": [
"dist",
"openai-types",
"anthropic-types"
],
"scripts": {
"build": "tsc --project tsconfig.dist.json",
"clean": "rimraf dist openai-types anthropic-types node_modules",
"clean:build": "rimraf dist openai-types anthropic-types",
"dev": "tsc --watch",
"extract-types": "node extract-types.mjs",
"fix": "eslint --fix --quiet . ; prettier --write --log-level=silent .",
"format": "prettier --check \"**/*.{js,ts,tsx}\"",
"lint": "eslint src",
"prebuild": "pnpm run clean:build && pnpm run extract-types",
"prepare": "pnpm run build",
"prepublishOnly": "pnpm run test",
"pretest": "pnpm run build",
"release": "np",
"test": "pnpm run lint && pnpm run typecheck",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"ai-fetch": "file:../ai-fetch",
"ky": "^1.4.0"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.27.2",
"@dexaai/eslint-config": "^1.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"np": "^10.0.7",
"openai": "^4.56.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.3"
}
}