-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.66 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
{
"name": "nuxt-slip-auth",
"version": "0.1.51",
"description": "Plug and play authentication module for Nuxt",
"repository": {
"type": "git",
"url": "git+https://github.com/adrienZ/slip.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./nuxt-drizzle": {
"types": "./dist/runtime/nuxt/drizzle.d.ts",
"import": "./dist/runtime/nuxt/drizzle.js",
"require": "./dist/runtime/nuxt/drizzle.js"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"bin": {
"nuxt-slip-auth": "dist/runtime/cli/cli.js"
},
"scripts": {
"postinstall": "nuxt prepare",
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "pnpm test:types && pnpm lint && pnpm test && pnpm prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "NUXT_SESSION_PASSWORD='7kP@G!hYvZ2#pL1mQx%3vU8c&RwT4oAs9bFnD#' vitest run",
"test:ci": "pnpm test --coverage --reporter=default --reporter=junit --outputFile=./junit.xml",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.21.2",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"consola": "^3.4.2",
"db0": "^0.3.4",
"drizzle-schema-checker": "^1.2.5",
"node-ipinfo": "^3.5.5"
},
"devDependencies": {
"@node-rs/argon2": "^2.0.2",
"@nuxt/devtools": "^2.7.0",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.21.2",
"@nuxt/test-utils": "^3.23.0",
"@types/node": "^20.19.39",
"@vitest/coverage-v8": "^3.2.4",
"better-sqlite3": "^11.10.0",
"changelogen": "^0.6.2",
"citty": "^0.1.6",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.45.2",
"eslint": "^9.39.4",
"hookable": "^5.5.3",
"nuxt": "^3.21.5",
"nuxt-auth-utils": "^0.5.29",
"pkg-pr-new": "^0.0.42",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.12"
},
"peerDependencies": {
"nuxt-auth-utils": "^0.5.29"
},
"packageManager": "pnpm@10.3.0+sha256.24dd5c65d86c7d0710aba16699fbc46d74fc9acf2b419f4945207f2de9e57e23",
"pnpm": {
"overrides": {
"shell-quote": "^1.8.4"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"better-sqlite3",
"esbuild"
]
}
}