@mystars-tg/faas-sdk 0.1.2

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,55 @@
1
+ {
2
+ "name": "@mystars-tg/faas-sdk",
3
+ "version": "0.1.2",
4
+ "description": "Official TypeScript SDK for the MyStars FaaS API — buy Telegram Stars & Premium for any @username, paid in TON or USDT.",
5
+ "license": "MIT",
6
+ "author": "MyStars.tg",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "type": "module",
11
+ "sideEffects": false,
12
+ "engines": {
13
+ "node": ">=18"
14
+ },
15
+ "keywords": [
16
+ "telegram",
17
+ "stars",
18
+ "premium",
19
+ "ton",
20
+ "usdt",
21
+ "mystars",
22
+ "faas",
23
+ "payments"
24
+ ],
25
+ "homepage": "https://mystars.tg/docs",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/mystars-tg/faas-ts.git"
29
+ },
30
+ "bugs": {
31
+ "url": "https://github.com/mystars-tg/faas-ts/issues"
32
+ },
33
+ "main": "./dist/index.cjs",
34
+ "module": "./dist/index.js",
35
+ "types": "./dist/index.d.ts",
36
+ "exports": {
37
+ ".": {
38
+ "types": "./dist/index.d.ts",
39
+ "import": "./dist/index.js",
40
+ "require": "./dist/index.cjs"
41
+ },
42
+ "./package.json": "./package.json"
43
+ },
44
+ "files": [
45
+ "dist",
46
+ "README.md",
47
+ "LICENSE"
48
+ ],
49
+ "scripts": {
50
+ "build": "tsup",
51
+ "typecheck": "tsc --noEmit",
52
+ "test": "vitest run --root ../..",
53
+ "prepublishOnly": "npm run build"
54
+ }
55
+ }