-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.96 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.96 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
82
83
84
85
86
87
88
89
{
"private": true,
"name": "@asgardeo/javascript-workspace",
"version": "0.0.0",
"description": "Workspace to hold the Asgardeo JavaScript SDKs.",
"author": "WSO2",
"license": "Apache-2.0",
"homepage": "https://github.com/asgardeo/javascript#readme",
"bugs": {
"url": "https://github.com/asgardeo/javascript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/asgardeo/javascript"
},
"keywords": [
"asgardeo",
"javascript",
"workspace"
],
"scripts": {
"build": "nx run-many --target=build --all",
"build:packages": "nx run-many --target=build --projects=packages/*",
"build:samples": "nx run-many --target=build --projects=samples/*",
"fix:lint": "nx run-many --target=fix:lint --all --parallel",
"lint": "nx run-many --target=lint --all --parallel",
"publish:packages": "changeset publish",
"test": "nx run-many --target=test --all --parallel",
"typecheck": "nx run-many --target=typecheck --all --parallel",
"version:packages": "changeset version && pnpm install --lockfile-only",
"aggregate-changelogs": "node scripts/aggregate-changelogs.js",
"e2e": "bash e2e/scripts/run-e2e.sh",
"e2e:docker:up": "docker compose -f e2e/docker-compose.yml up -d",
"e2e:docker:down": "docker compose -f e2e/docker-compose.yml down -v",
"e2e:docker:up:is": "docker compose -f e2e/docker-compose.yml up -d wso2is",
"e2e:docker:up:thunder": "docker compose -f e2e/docker-compose.yml up -d thunder",
"e2e:install": "playwright install chromium"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.8",
"@playwright/test": "^1.58.2",
"@wso2/eslint-plugin": "catalog:",
"@wso2/prettier-config": "catalog:",
"eslint": "8.57.0",
"nx": "20.8.1",
"prettier": "2.6.2",
"tsx": "^4.21.0",
"typescript": "5.7.2",
"undici": "^7.21.0"
},
"pnpm": {
"overrides": {
"pbkdf2": "3.1.3",
"sha.js": "2.4.12",
"nx>axios": "1.13.5",
"@asgardeo/auth-spa>axios": "1.13.5",
"test-exclude>glob": "10.5.0",
"js-beautify>glob": "10.5.0",
"@types/react": "19.1.5",
"@types/react-dom": "19.1.5",
"js-yaml": "4.1.1",
"read-yaml-file": "2.1.0",
"brace-expansion": "2.0.2",
"@isaacs/brace-expansion": "5.0.1",
"@eslint/plugin-kit": "0.3.4",
"tmp": "0.2.4",
"min-document": "2.19.1",
"lodash": "4.17.23",
"tar": "7.5.8",
"seroval": "1.4.1",
"qs": "6.14.1",
"@vitejs/plugin-vue>vite": "7.1.12",
"prettier": "2.6.2",
"@wso2/eslint-plugin>@typescript-eslint/eslint-plugin": "6.21.0",
"@wso2/eslint-plugin>@typescript-eslint/parser": "6.21.0",
"@wso2/eslint-plugin>@typescript-eslint/type-utils": "6.21.0",
"@wso2/eslint-plugin>@typescript-eslint/utils": "6.21.0"
},
"auditConfig": {
"ignoreCves": [
"CVE-2026-26996"
]
}
},
"publishConfig": {
"access": "restricted"
}
}