-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.26 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
{
"name": "@please-auth/waitlist",
"type": "module",
"version": "0.1.0",
"description": "Waitlist / early-access plugin for Better Auth. Intercepts all registration paths and gates sign-ups behind an invite-based waitlist.",
"author": "Minsu Lee",
"license": "MIT",
"homepage": "https://github.com/chatbot-pf/please-auth#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chatbot-pf/please-auth.git",
"directory": "packages/waitlist"
},
"bugs": {
"url": "https://github.com/chatbot-pf/please-auth/issues"
},
"keywords": [
"better-auth",
"auth",
"waitlist",
"early-access",
"invite",
"plugin",
"typescript"
],
"exports": {
".": {
"dev-source": "./src/index.ts",
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./client": {
"dev-source": "./src/client.ts",
"types": "./dist/client.d.mts",
"default": "./dist/client.mjs"
}
},
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"publishConfig": {
"access": "public"
},
"typesVersions": {
"*": {
"*": ["./dist/index.d.mts"],
"client": ["./dist/client.d.mts"]
}
},
"files": ["dist"],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage --coverage.provider=istanbul",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:package": "publint run --strict",
"lint:types": "attw --profile esm-only --pack .",
"build": "tsdown",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@better-auth/core": "^1.0.0",
"better-auth": "^1.0.0",
"better-call": "^1.0.0",
"nanostores": "^1.0.1"
},
"peerDependenciesMeta": {
"nanostores": {
"optional": true
}
},
"dependencies": {
"zod": "^4.3.5"
},
"devDependencies": {
"@better-auth/core": "1.5.4",
"@better-fetch/fetch": "1.1.21",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.8",
"@types/node": "^25.2.2",
"better-auth": "1.5.4",
"better-call": "1.3.2",
"better-sqlite3": "^12.6.2",
"nanostores": "^1.1.0",
"tsdown": "^0.20.3",
"type-fest": "^5.4.4",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}