-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.03 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.03 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
{
"name": "@asgardeo/browser",
"version": "0.5.12",
"description": "Browser-specific implementation of Asgardeo JavaScript SDK.",
"keywords": [
"asgardeo",
"browser",
"spa"
],
"homepage": "https://github.com/asgardeo/javascript/tree/main/packages/browser#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/browser"
},
"scripts": {
"build": "pnpm clean && node esbuild.config.mjs && tsc -p tsconfig.lib.json --emitDeclarationOnly --outDir dist",
"clean": "rimraf dist",
"fix:lint": "eslint . --ext .js,.jsx,.ts,.tsx,.cjs,.mjs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.cjs,.mjs",
"test": "vitest",
"test:browser": "vitest --workspace=vitest.workspace.ts",
"typecheck": "tsc -p tsconfig.lib.json"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@types/node": "22.15.3",
"@vitest/browser": "3.1.3",
"@wso2/eslint-plugin": "catalog:",
"@wso2/prettier-config": "catalog:",
"esbuild": "0.25.9",
"esbuild-plugin-inline-worker": "0.1.1",
"eslint": "8.57.0",
"jsdom": "^27.4.0",
"playwright": "1.55.1",
"prettier": "2.6.2",
"rimraf": "6.1.0",
"typescript": "5.7.2",
"vitest": "3.1.3"
},
"dependencies": {
"@asgardeo/javascript": "workspace:*",
"axios": "1.13.5",
"base64url": "3.0.1",
"buffer": "6.0.3",
"core-js": "3.42.0",
"crypto-browserify": "3.12.1",
"fast-sha256": "1.3.0",
"jose": "6.0.11",
"process": "0.11.10",
"randombytes": "2.1.0",
"stream-browserify": "3.0.0",
"tslib": "2.8.1"
},
"publishConfig": {
"access": "public"
}
}