-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.24 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.24 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "better-auth-telegram",
"version": "1.5.0",
"type": "module",
"description": "Telegram authentication plugin for Better Auth",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./client": {
"import": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"require": {
"types": "./dist/client.d.cts",
"default": "./dist/client.cjs"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "npx ultracite check",
"lint:fix": "npx ultracite fix",
"prepublishOnly": "npm run type-check && npm run test && npm run build"
},
"keywords": [
"better-auth",
"better-auth-plugin",
"telegram",
"telegram-login",
"telegram-mini-apps",
"authentication",
"oauth",
"plugin",
"typescript"
],
"author": "Vibe Code <hello@vcode.sh> (https://vcode.sh)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vcode-sh/better-auth-telegram.git"
},
"bugs": {
"url": "https://github.com/vcode-sh/better-auth-telegram/issues"
},
"homepage": "https://github.com/vcode-sh/better-auth-telegram#readme",
"peerDependencies": {
"better-auth": "^1.5.0"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^25.3.0",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "^4.0.18",
"better-auth": "1.5.0",
"happy-dom": "20.7.0",
"lint-staged": "16.2.7",
"tsup": "8.5.1",
"typescript": "5.9.3",
"ultracite": "7.2.3",
"vitest": "4.0.18"
},
"overrides": {
"hono": "4.12.3",
"lodash": "4.17.23"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css}": [
"npx ultracite fix"
]
}
}