forked from asgardeo/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.95 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@asgardeo/vue",
"version": "0.4.4",
"description": "Vue 3 SDK for Asgardeo - Authentication and Identity Management",
"keywords": [
"asgardeo",
"authentication",
"identity",
"oauth",
"oidc",
"vue",
"vue3",
"login",
"sso",
"identity-management"
],
"homepage": "https://github.com/asgardeo/javascript/tree/main/packages/vue#readme",
"bugs": {
"url": "https://github.com/asgardeo/javascript/issues"
},
"author": "WSO2",
"license": "Apache-2.0",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/asgardeo/javascript",
"directory": "packages/vue"
},
"scripts": {
"build": "pnpm clean && node esbuild.config.mjs && tsc -p tsconfig.lib.json --emitDeclarationOnly --outDir dist",
"clean": "rimraf dist",
"lint": "eslint . --ext .js,.ts,.vue,.cjs,.mjs",
"lint:fix": "eslint . --ext .js,.ts,.vue,.cjs,.mjs --fix",
"test": "vitest --passWithNoTests",
"typecheck": "tsc -p tsconfig.lib.json"
},
"devDependencies": {
"@types/node": "22.15.3",
"@vue/test-utils": "2.4.6",
"@wso2/eslint-plugin": "catalog:",
"@wso2/prettier-config": "catalog:",
"esbuild": "0.25.9",
"eslint": "8.57.0",
"jsdom": "26.1.0",
"prettier": "2.6.2",
"rimraf": "6.1.0",
"typescript": "5.7.2",
"vitest": "3.1.3",
"vue": "3.5.30"
},
"peerDependencies": {
"vue": ">=3.5.0",
"vue-router": ">=4.0.0"
},
"peerDependenciesMeta": {
"vue-router": {
"optional": true
}
},
"dependencies": {
"@asgardeo/browser": "workspace:*",
"@asgardeo/i18n": "workspace:*",
"dompurify": "catalog:",
"tslib": "2.8.1"
},
"publishConfig": {
"access": "public"
}
}