This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
60 lines (60 loc) · 1.66 KB
/
package.json
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
{
"name": "nuxt-sanctum-auth",
"version": "0.4.10",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "npm run prepack && changelogen --release && npm publish && git push --follow-tags"
},
"dependencies": {
"@nuxt/kit": "^3.2.0",
"ofetch": "^1.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/schema": "^3.0.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/tailwindcss": "^6.0.1",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.11.18",
"autoprefixer": "^10.4.13",
"changelogen": "^0.4.1",
"nuxt": "^3.12.4",
"postcss": "^8.4.21",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.6"
},
"description": "This is a simple package for interating Laravel Sanctum auth with Nuxt3. This package is in developement and for now works only in SPA mode (no ssr yet).",
"repository": {
"type": "git",
"url": "git+https://github.com/dystcz/nuxt-sanctum-auth.git"
},
"keywords": [
"nuxt3",
"typescript",
"laravel",
"sanctum",
"auth",
"nuxt"
],
"author": "Paul Cross <me@paulcross.cz> (https://paulcross.cz/)",
"bugs": {
"url": "https://github.com/dystcz/nuxt-sanctum-auth/issues"
},
"homepage": "https://github.com/dystcz/nuxt-sanctum-auth#readme"
}