-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 908 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
35
36
37
38
39
{
"name": "kick-profile-fetcher",
"version": "0.1.0",
"description": "Production-ready TypeScript API client for fetching Kick.com channel profile data from kick.com/api/v1/channels/{username}.",
"keywords": [
"kick",
"kick.com",
"kick-api",
"kick-profile",
"kick-channel",
"typescript",
"streaming"
],
"license": "MIT",
"author": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/example.ts",
"typecheck": "tsc --noEmit",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"prepublishOnly": "npm run clean && npm run build"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^22.15.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}