-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 758 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 758 Bytes
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
{
"name": "poke-api-sdk",
"version": "1.0.0",
"description": "TypeScript SDK for PokeAPI integration built with Bun",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node",
"test": "bun test",
"dev": "bun run src/index.ts",
"lint": "echo 'Linting not configured yet'",
"agent": "bun run agent.ts"
},
"keywords": [
"pokemon",
"pokeapi",
"api",
"sdk",
"typescript",
"bun"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "latest"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}