-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 KB
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
{
"name": "@signet/sdk",
"version": "0.115.13",
"license": "Apache-2.0",
"description": "HTTP client SDK for the Signet daemon API",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./react": {
"import": "./dist/react.js",
"types": "./dist/react.d.ts"
},
"./ai-sdk": {
"import": "./dist/ai-sdk.js",
"types": "./dist/ai-sdk.d.ts"
},
"./openai": {
"import": "./dist/openai.js",
"types": "./dist/openai.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts ./src/react.tsx ./src/ai-sdk.ts ./src/openai.ts --outdir ./dist --target node --external react --external zod",
"dev": "bun --watch src/index.ts",
"test": "bun test"
},
"devDependencies": {
"@types/react": "^19.0.0",
"react": "^19.0.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"zod": ">=3.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"zod": {
"optional": true
}
}
}