@tma.js/init-data-node 0.0.17 → 0.0.19
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/README.md +3 -3
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[code-link]: https://github.com/Telegram-Mini-Apps/tma.js/tree/master/packages/init-data-node
|
|
6
6
|
|
|
7
|
-
[docs-link]: https://docs.telegram-mini-apps.com/
|
|
7
|
+
[docs-link]: https://docs.telegram-mini-apps.com/packages/typescript/tma-js-init-data-node
|
|
8
8
|
|
|
9
9
|
[docs-badge]: https://img.shields.io/badge/documentation-blue?logo=gitbook&logoColor=white
|
|
10
10
|
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
[![docs-badge]][docs-link]
|
|
20
20
|
[![code-badge]][code-link]
|
|
21
21
|
|
|
22
|
-
Package providing utilities connected with Telegram
|
|
22
|
+
Package providing utilities connected with Telegram Mini Apps init data. It
|
|
23
23
|
allows init data validation and parsing, works in NodeJS.
|
|
24
24
|
|
|
25
25
|
This library is a part of TypeScript packages ecosystem around Telegram Web
|
|
26
26
|
Apps. You can learn more about this package in this
|
|
27
|
-
[documentation]
|
|
27
|
+
[documentation][docs-link].
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tma.js/init-data-node",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"description": "TypeScript Node library to operate with Telegram init data.",
|
|
5
5
|
"author": "Vladislav Kibenko <wolfram.deus@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/Telegram-Mini-Apps/tma.js#readme",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@tma.js/init-data": "0.2.
|
|
40
|
+
"@tma.js/init-data": "0.2.21"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^16.0.0",
|
|
@@ -52,7 +52,6 @@
|
|
|
52
52
|
"test": "vitest",
|
|
53
53
|
"lint": "eslint -c .eslintrc.cjs src/**/* tests/**/*",
|
|
54
54
|
"typecheck": "tsc --noEmit -p tsconfig.build.json",
|
|
55
|
-
"build": "vite build"
|
|
56
|
-
"rollup": "pnpm run typecheck && pnpm run build"
|
|
55
|
+
"build": "vite build"
|
|
57
56
|
}
|
|
58
57
|
}
|