forked from pinax-network/token-api-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.39 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
52
{
"name": "@pinax/token-api",
"version": "0.2.5",
"description": "Pinax Token API - Power your apps & AI agents with real-time token data",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"prepublishOnly": "bun run build",
"generate": "openapi-typescript https://token-api.service.stage.pinax.network/openapi -o src/openapi.d.ts",
"build": "bun run generate && bun build src/index.ts --outdir dist --target node && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration --outDir dist && cp ./src/openapi.d.ts dist/openapi.d.ts",
"typecheck": "tsc --noEmit",
"test": "bun test --coverage",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write ."
},
"keywords": [
"pinax",
"token-api",
"blockchain",
"evm",
"ethereum",
"sdk"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pinax-network/token-api-sdk.git"
},
"devDependencies": {
"@biomejs/biome": "^2.3.6",
"@types/bun": "latest",
"openapi-typescript": "^7.13.0",
"typescript": "^5"
},
"dependencies": {
"openapi-fetch": "^0.13.0"
}
}