-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "nuxt-msal",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/cernochmartin/msal-nuxt",
"type": "module",
"author": {
"name": "Martin Černoch",
"email": "[email protected]"
},
"contributors": [
"cernochmartin"
],
"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": "nuxt-module-build && changelogen --release --push && pnpm publish",
"lint": "eslint --ext .js,.ts,.vue"
},
"dependencies": {
"@azure/msal-browser": "^3.6.0",
"@nuxt/kit": "^3.9.3"
},
"devDependencies": {
"@nuxt/devtools": "^1.0.8",
"@nuxt/module-builder": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/node": "^20.11.5",
"eslint": "^8.56.0",
"nuxt": "^3.12.4",
"typescript": "^5.3.3"
},
"keywords": [
"nuxt",
"nuxtjs",
"nuxt-module",
"vue3",
"nuxt3",
"nuxt-msal",
"msal-nuxt",
"msal",
"msaljs"
],
"packageManager": "[email protected]"
}