-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
61
62
63
{
"name": "@trandaison/nuxt-3-auth",
"version": "0.1.7",
"description": "A simple authentication module for Nuxt 3",
"repository": "https://github.com/trandaison/nuxt-3-auth",
"homepage": "https://nuxt-3-auth.github.io",
"private": false,
"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 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": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish --access=public && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@intlify/vue-router-bridge": "^1.1.0",
"@nuxt/kit": "^3.8.2",
"@nuxtjs/i18n": "^8.2.0",
"@pinia/nuxt": "^0.5.1",
"cookie-es": "^1.2.2",
"defu": "^6.1.3",
"jwt-decode": "^4.0.0",
"lodash-es": "^4.17.21",
"ofetch": "^1.3.3",
"pathe": "^1.1.1",
"pinia": "^2.1.7",
"sass": "^1.69.5"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.8.2",
"@nuxt/test-utils": "^3.12.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.10.3",
"changelogen": "^0.5.5",
"eslint": "^8.55.0",
"nuxt": "^3.13.2",
"vitepress": "^1.2.3",
"vitest": "^1.6.0"
}
}