-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "teleui",
"author": "Nick G.",
"license": "MIT",
"version": "0.1.13",
"description": "A small library of components for creating mini-applications in the Telegram ecosystem",
"main": "./build/teleui.umd.cjs",
"types": "./build/index.d.ts",
"module": "./build/teleui.js",
"files": [ "build" ],
"exports": {
".": {
"import": {
"default": "./build/teleui.js",
"types": "./build/index.d.ts"
},
"require": "./build/teleui.umd.cjs"
}
},
"type": "module",
"homepage": "https://psychosynthesis.github.io/TeleUI/",
"funding": "https://psychosynthesis.github.io/TeleUI/",
"repository": {
"type": "git",
"url": "git+https://github.com/Psychosynthesis/TeleUI.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"syncw": "del /s /q build && git checkout dev build/",
"syncl": "rm -R build/ && git checkout dev build/"
},
"keywords": [ "telegram", "components", "ui", "tma", "framework" ],
"dependencies": {
"clsx": "^2.0.0",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"vanicom": "^1.1.1"
}
}