mirror of
https://github.com/bitinflow/nuxt-oauth.git
synced 2026-03-13 05:35:59 +00:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "@bitinflow/nuxt-oauth",
|
|
"version": "2.0.4",
|
|
"description": "Nuxt 3 OAuth Module",
|
|
"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 && nuxi prepare playground",
|
|
"ci": "npm run lint && npm run dev:prepare && npm run test && npm run prepack",
|
|
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && git push --follow-tags",
|
|
"push": "npm publish --access public",
|
|
"lint": "eslint .",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest watch"
|
|
},
|
|
"dependencies": {
|
|
"@nuxt/kit": "^3.2.2",
|
|
"defu": "^6.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxt/eslint-config": "^0.1.1",
|
|
"@nuxt/module-builder": "^0.2.1",
|
|
"@nuxt/schema": "^3.2.2",
|
|
"@nuxt/test-utils": "^3.2.2",
|
|
"axios": "^1.6.0",
|
|
"changelogen": "^0.4.1",
|
|
"eslint": "^8.34.0",
|
|
"nuxt": "^3.2.2",
|
|
"vitest": "^0.28.5"
|
|
}
|
|
}
|