-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c70cf3
commit 2ca1216
Showing
2 changed files
with
66 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Changelog | ||
|
||
|
||
## v0.0.1 | ||
|
||
[compare changes](https://github.com/manchenkoff/nuxt-auth-sanctum/compare/v1.0.1...v0.0.1) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,60 @@ | ||
{ | ||
"name": "nuxt-auth-sanctum", | ||
"version": "0.0.0", | ||
"author": "Artem Manchenkov", | ||
"description": "Nuxt module for Laravel Sanctum authentication", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/manchenkoff/nuxt-auth-sanctum.git" | ||
}, | ||
"license": "MIT", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types.d.ts", | ||
"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 && nuxt-module-build prepare && nuxi prepare playground", | ||
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags", | ||
"lint": "eslint .", | ||
"fmt": "prettier --write .", | ||
"test": "vitest run", | ||
"test:watch": "vitest watch" | ||
}, | ||
"dependencies": { | ||
"@nuxt/kit": "^3.7.3", | ||
"defu": "^6.1.2" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/devtools": "latest", | ||
"@nuxt/eslint-config": "^0.2.0", | ||
"@nuxt/module-builder": "^0.5.1", | ||
"@nuxt/schema": "^3.7.3", | ||
"@nuxt/test-utils": "^3.7.3", | ||
"@types/node": "^18.17.17", | ||
"@types/set-cookie-parser": "^2.4.3", | ||
"changelogen": "^0.5.5", | ||
"eslint": "^8.49.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"nuxi": "^3.9.0", | ||
"nuxt": "^3.7.3", | ||
"prettier": "^3.0.3", | ||
"set-cookie-parser": "^2.6.0", | ||
"vite": "^4.4.9", | ||
"vitest": "^0.33.0", | ||
"vue": "^3.3.4" | ||
}, | ||
"packageManager": "[email protected]" | ||
} | ||
"name": "nuxt-auth-sanctum", | ||
"version": "0.0.1", | ||
"author": "Artem Manchenkov", | ||
"description": "Nuxt module for Laravel Sanctum authentication", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/manchenkoff/nuxt-auth-sanctum.git" | ||
}, | ||
"license": "MIT", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types.d.ts", | ||
"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 && nuxt-module-build prepare && nuxi prepare playground", | ||
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags", | ||
"lint": "eslint .", | ||
"fmt": "prettier --write .", | ||
"test": "vitest run", | ||
"test:watch": "vitest watch" | ||
}, | ||
"dependencies": { | ||
"@nuxt/kit": "^3.7.3", | ||
"defu": "^6.1.2" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/devtools": "latest", | ||
"@nuxt/eslint-config": "^0.2.0", | ||
"@nuxt/module-builder": "^0.5.1", | ||
"@nuxt/schema": "^3.7.3", | ||
"@nuxt/test-utils": "^3.7.3", | ||
"@types/node": "^18.17.17", | ||
"@types/set-cookie-parser": "^2.4.3", | ||
"changelogen": "^0.5.5", | ||
"eslint": "^8.49.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"nuxi": "^3.9.0", | ||
"nuxt": "^3.7.3", | ||
"prettier": "^3.0.3", | ||
"set-cookie-parser": "^2.6.0", | ||
"vite": "^4.4.9", | ||
"vitest": "^0.33.0", | ||
"vue": "^3.3.4" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |