-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.36 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.36 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
{
"name": "@eggermarc/better-auth-usage",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/EggerMarc/better-auth-usage.git"
},
"description": "better auth usage plugin",
"main": "./dist/index.js",
"author": "Marc Egger",
"license": "MIT",
"homepage": "https://github.com/EggerMarc/better-auth-usage#readme",
"scripts": {
"build": "tsup",
"build:example": "tsup && cd examples/nextjs && bun install && bun run build",
"dev": "tsup --watch",
"dev:example": "tsup && cd examples/nextjs && bun install && bun run dev",
"test": "bun test tests/ package/",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:redis": "bun test tests-infra/redis.test.ts",
"test:perf": "bun test tests/performance.test.ts tests/performance-comparison.test.ts"
},
"type": "module",
"types": "./dist/index.d.ts",
"dependencies": {
"@effect/schema": "^0.75.5",
"effect": "^3.21.0",
"events": "^3.3.0",
"ioredis": "^5.8.2",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/bun": "^1.3.1",
"ioredis-mock": "^8.13.1",
"testcontainers": "^11.13.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"better-auth": "^1.3.12",
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
},
"./react": {
"import": "./dist/react.js",
"types": "./dist/react.d.ts"
},
"./package.json": "./package.json"
},
"bugs": {
"url": "https://github.com/EggerMarc/better-auth-plugin/issues"
},
"files": [
"dist"
],
"keywords": [
"better-auth",
"plugin",
"auth",
"better",
"usage",
"consumption",
"consumption-tracking",
"credits",
"better-auth-plugin",
"credits-tracking"
]
}