forked from nuxt-modules/better-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.29 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.29 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@onmax/nuxt-better-auth",
"type": "module",
"version": "0.0.2-alpha.29",
"packageManager": "pnpm@10.15.1",
"description": "Nuxt module for Better Auth integration with NuxtHub, route protection, session management, and role-based access",
"author": "onmax",
"license": "MIT",
"homepage": "https://better-auth.nuxt.dev",
"repository": {
"type": "git",
"url": "https://github.com/nuxt-modules/better-auth"
},
"agents": {
"skills": [
{
"name": "nuxt-better-auth",
"path": "./skills/nuxt-better-auth"
}
]
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./config": {
"types": "./dist/runtime/config.d.ts",
"import": "./dist/runtime/config.js"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"config": [
"./dist/runtime/config.d.ts"
]
}
},
"files": [
"dist",
"skills"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "pnpm dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"dev:docs": "nuxi dev docs",
"build:docs": "nuxi build docs",
"release": "bumpp --push --no-push-all",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"typecheck:runtime-server": "tsc --noEmit --pretty false -p src/runtime/server/tsconfig.json",
"typecheck:playground": "pnpm -C playground exec nuxi prepare && pnpm -C playground exec vue-tsc --noEmit -p .nuxt/tsconfig.app.json",
"test": "vitest run",
"test:watch": "vitest watch"
},
"peerDependencies": {
"@nuxthub/core": ">=0.10.5",
"better-auth": ">=1.0.0"
},
"peerDependenciesMeta": {
"@nuxthub/core": {
"optional": true
}
},
"dependencies": {
"@better-auth/cli": "^1.5.0-beta.3",
"@nuxt/kit": "^4.2.2",
"@nuxt/ui": "^4.2.1",
"defu": "^6.1.4",
"jiti": "^2.4.2",
"pathe": "^2.0.3",
"radix3": "^1.1.2",
"std-env": "^3.10.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@libsql/client": "^0.15.15",
"@nuxt/devtools": "^3.1.1",
"@nuxt/devtools-kit": "^3.1.1",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.2",
"@nuxt/test-utils": "^3.21.0",
"@nuxthub/core": "^0.10.5",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "latest",
"better-auth": "^1.5.0-beta.3",
"better-sqlite3": "^11.9.1",
"bumpp": "^10.3.2",
"changelogen": "^0.6.2",
"consola": "^3.4.2",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.38.4",
"eslint": "^9.39.1",
"npm-agentskills": "https://pkg.pr.new/onmax/npm-agentskills@394499e",
"nuxt": "^4.2.2",
"tinyexec": "^1.0.2",
"typescript": "~5.9.3",
"vitest": "^4.0.15",
"vitest-package-exports": "^0.1.1",
"vue-tsc": "^3.1.7",
"yaml": "^2.8.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"sharp",
"workerd"
],
"patchedDependencies": {
"@peculiar/x509@1.14.2": "patches/@peculiar__x509@1.14.2.patch"
},
"overrides": {
"reka-ui": "^2.6.1"
}
}
}