-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "kiteconnect-ts",
"author": "Anurag Roy",
"description": "Unofficial library for the Kite Connect trading APIs, written in TypeScript.",
"license": "MIT",
"version": "1.1.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anurag-roy/kiteconnect-ts.git"
},
"homepage": "https://kiteconnect.anuragroy.dev",
"bugs": {
"url": "https://github.com/anurag-roy/kiteconnect-ts/issues"
},
"keywords": [
"Zerodha",
"KiteConnect",
"KiteTicker",
"TypeScript"
],
"scripts": {
"lint": "tsc",
"build": "tsup lib/index.ts --format cjs,esm --dts",
"release": "pnpm run build && pnpm changeset publish",
"generateDocs": "tsx typedoc/generateDocs.ts",
"test": "node --import tsx --test tests/*.test.ts"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@types/papaparse": "^5.3.14",
"@types/ws": "^8.5.11",
"nock": "14.0.0-beta.8",
"tsup": "^8.2.2",
"tsx": "^4.16.2",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.7.2",
"papaparse": "^5.4.1",
"ws": "^8.18.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}