-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.39 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.39 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
{
"name": "@onmax/nuxt-better-auth",
"type": "module",
"version": "0.0.7",
"packageManager": "pnpm@11.1.0",
"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"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./composables": {
"types": "./dist/runtime/composables.d.ts",
"import": "./dist/runtime/composables.js"
},
"./config": {
"types": "./dist/runtime/config.d.ts",
"import": "./dist/runtime/config.js"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"composables": [
"./dist/runtime/composables.d.ts"
],
"config": [
"./dist/runtime/config.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"build": "pnpm build:docs",
"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",
"deploy": "wrangler deploy",
"release": "bumpp --push --no-push-all",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "vue-tsc --noEmit",
"typecheck:runtime-server": "cd test/cases/plugins-type-inference && nuxi prepare && vue-tsc --noEmit --pretty false -p .nuxt/tsconfig.server.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.13",
"@nuxt/kit": "^4.3.1",
"defu": "^6.1.4",
"h3": "^1.15.11",
"jiti": "^2.6.1",
"pathe": "^2.0.3",
"radix3": "^1.1.2",
"std-env": "^4.0.0",
"ufo": "^1.6.4"
},
"devDependencies": {
"@antfu/eslint-config": "^9.0.0",
"@libsql/client": "^0.17.3",
"@libsql/linux-x64-gnu": "0.5.29",
"@nuxt/devtools": "^3.2.3",
"@nuxt/devtools-kit": "^3.2.4",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.1",
"@nuxt/test-utils": "^4.0.0",
"@nuxthub/core": "^0.10.6",
"@pinia/nuxt": "^0.11.3",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "latest",
"better-auth": "1.5.5",
"better-call": "1.3.5",
"better-sqlite3": "^12.6.2",
"bumpp": "^11.0.0",
"changelogen": "^0.6.2",
"consola": "^3.4.2",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.1",
"eslint": "^10.0.3",
"nitropack": "2.13.1",
"npm-agentskills": "https://pkg.pr.new/onmax/npm-agentskills@394499e",
"nuxt": "^4.3.1",
"pinia": "^3.0.4",
"postgres": "^3.4.9",
"tinyexec": "^1.1.1",
"typescript": "~5.9.3",
"unstorage": "^1.17.5",
"vitest": "^4.0.18",
"vitest-package-exports": "^1.2.0",
"vue": "3.5.29",
"vue-tsc": "^3.2.7",
"wrangler": "4.72.0",
"yaml": "^2.8.3"
}
}