@ganaka/sdk 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@ganaka/sdk",
3
+ "version": "0.0.1",
4
+ "description": "Ganaka SDK - TypeScript client library",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "data",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "scripts": {
22
+ "build": "vite build",
23
+ "build:watch": "vite build --watch",
24
+ "dev": "vite build --watch",
25
+ "lint": "tsc --noEmit",
26
+ "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json}\"",
27
+ "format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json}\"",
28
+ "clean": "rm -rf dist",
29
+ "prepublishOnly": "pnpm run clean && pnpm run build",
30
+ "semantic-release": "semantic-release",
31
+ "test": "vitest run",
32
+ "test:watch": "vitest",
33
+ "test:ui": "vitest --ui"
34
+ },
35
+ "keywords": [
36
+ "ganaka",
37
+ "sdk",
38
+ "typescript",
39
+ "trading",
40
+ "api"
41
+ ],
42
+ "author": {
43
+ "name": "Rohit Raj",
44
+ "email": "rohitrajnovember@gmail.com"
45
+ },
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "https://github.com/ganakadev/ganaka.git",
49
+ "directory": "packages/sdk"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/ganakadev/ganaka/issues"
53
+ },
54
+ "homepage": "https://github.com/ganakadev/ganaka#readme",
55
+ "license": "MIT",
56
+ "devDependencies": {
57
+ "@ganaka/schemas": "workspace:*",
58
+ "@rollup/plugin-commonjs": "^29.0.0",
59
+ "@rollup/plugin-node-resolve": "^16.0.3",
60
+ "@rollup/plugin-typescript": "^12.3.0",
61
+ "@semantic-release/changelog": "^6.0.3",
62
+ "@semantic-release/commit-analyzer": "^11.1.0",
63
+ "@semantic-release/git": "^10.0.1",
64
+ "@semantic-release/github": "^9.2.6",
65
+ "@semantic-release/npm": "^11.0.2",
66
+ "@semantic-release/release-notes-generator": "^12.1.0",
67
+ "@types/cheerio": "^0.22.35",
68
+ "@types/node": "^20.10.0",
69
+ "@vitest/ui": "^2.1.8",
70
+ "esbuild": "^0.27.0",
71
+ "rollup": "^4.53.3",
72
+ "semantic-release": "^23.0.2",
73
+ "typescript": "^5.3.3",
74
+ "vite": "^5.0.0",
75
+ "vite-plugin-dts": "^3.6.0",
76
+ "vitest": "^2.1.8"
77
+ },
78
+ "publishConfig": {
79
+ "access": "public"
80
+ },
81
+ "engines": {
82
+ "node": ">=18.0.0"
83
+ },
84
+ "dependencies": {
85
+ "axios": "^1.12.2",
86
+ "cheerio": "^1.1.2",
87
+ "csv-parser": "^3.2.0",
88
+ "dayjs": "^1.11.19",
89
+ "dotenv": "^17.2.3",
90
+ "pino": "^10.1.0",
91
+ "pino-pretty": "^13.1.3",
92
+ "zod": "^4.2.1"
93
+ },
94
+ "peerDependencies": {
95
+ "dotenv": "^16.4.5"
96
+ },
97
+ "peerDependenciesMeta": {
98
+ "dotenv": {
99
+ "optional": true
100
+ }
101
+ }
102
+ }