-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
58 lines (58 loc) · 1.3 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
56
57
58
{
"name": "@twa-dev/sdk",
"version": "8.0.1",
"main": "dist/index.js",
"sideEffects": [
"./dist/telegram-web-apps.js"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
}
},
"typesVersions": {
"*": {
"react": [
"./dist/react/index.d.ts"
]
}
},
"repository": "https://github.com/twa-dev/sdk.git",
"keywords": [
"telegram",
"telegram web apps",
"telegram bot",
"sdk",
"bot"
],
"author": "Artur Stambultsian <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"prettier": "^2.7.1",
"react": "^18.3.1",
"typescript": "^4.7.4"
},
"scripts": {
"test": "eslint --ext .ts,.tsx ./",
"build": "rm -rf dist && npm run test && tsc --outDir dist/"
},
"dependencies": {
"@twa-dev/types": "^8.0.1"
},
"peerDependencies": {
"react": "^18.3.1"
}
}