-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.02 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.02 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
{
"name": "@onmax/nuxt-better-auth",
"type": "module",
"version": "0.0.2-alpha.30",
"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.13",
"@nuxt/kit": "^4.3.1",
"@nuxt/ui": "^4.5.0",
"defu": "^6.1.4",
"jiti": "^2.6.1",
"pathe": "^2.0.3",
"radix3": "^1.1.2",
"std-env": "^3.10.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@libsql/client": "^0.17.0",
"@libsql/linux-x64-gnu": "0.5.22",
"@nuxt/devtools": "^3.2.2",
"@nuxt/devtools-kit": "^3.2.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.1",
"@nuxt/test-utils": "^4.0.0",
"@nuxthub/core": "^0.10.6",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "latest",
"better-auth": "1.5.0",
"better-sqlite3": "^12.6.2",
"bumpp": "^10.4.1",
"changelogen": "^0.6.2",
"consola": "^3.4.2",
"drizzle-kit": "^0.31.9",
"drizzle-orm": "^0.45.1",
"eslint": "^10.0.2",
"npm-agentskills": "https://pkg.pr.new/onmax/npm-agentskills@394499e",
"nuxt": "^4.3.1",
"tinyexec": "^1.0.2",
"typescript": "~5.9.3",
"vitest": "^4.0.18",
"vitest-package-exports": "^1.2.0",
"vue-tsc": "^3.2.5",
"yaml": "^2.8.2"
}
}