@ctx-core/auth0-management 6.0.103 → 6.0.104

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +60 -61
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ctx-core/auth0-management
2
2
 
3
+ ## 6.0.104
4
+
5
+ ### Patch Changes
6
+
7
+ - version bump: fix published dependencies
8
+
3
9
  ## 6.0.105
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,62 +1,61 @@
1
1
  {
2
- "name": "@ctx-core/auth0-management",
3
- "version": "6.0.103",
4
- "description": "ctx-core auth0 management api",
5
- "keywords": [
6
- "ctx-core",
7
- "auth0"
8
- ],
9
- "homepage": "https://github.com/ctx-core/auth0-management#readme",
10
- "bugs": {
11
- "url": "https://github.com/ctx-core/auth0-management/issues"
12
- },
13
- "repository": {
14
- "type": "git",
15
- "url": "https://github.com/ctx-core/auth0-management.git"
16
- },
17
- "license": "Apache-2.0",
18
- "author": "Brian Takita",
19
- "type": "module",
20
- "main": "./dist/index.js",
21
- "module": "./dist/index.js",
22
- "types": "./src/index.ts",
23
- "exports": {
24
- ".": {
25
- "require": "./dist/index.cjs",
26
- "import": "./dist/index.js"
27
- },
28
- "./package.json": "./package.json"
29
- },
30
- "bin": {
31
- "add-grant-password-auth0": "./bin/add-grant-password-auth0.mjs",
32
- "auth0": "./bin/auth0.mjs",
33
- "getAll-client-grants-auth0": "./bin/getAll-client-grants-auth0.mjs"
34
- },
35
- "scripts": {
36
- "build": "npm run generate_ctx_I_file && npm run compile",
37
- "clean": "rm -rf dist",
38
- "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
39
- "exec": "$@",
40
- "prepublishOnly": "npm run clean && npm run build",
41
- "generate_ctx_I_file": "swc $(./node_modules/.bin/generate_ctx_I_file | tail -n1) --out-dir dist --source-maps --config-file .swcrc"
42
- },
43
- "dependencies": {
44
- "@ctx-core/auth0": "workspace:^26.0.1",
45
- "@ctx-core/fetch": "workspace:^11.0.81",
46
- "@ctx-core/object": "workspace:^21.0.23",
47
- "@ctx-core/store": "workspace:^27.0.37",
48
- "auth0": "^2.37.0",
49
- "svelte": "3.44.1"
50
- },
51
- "devDependencies": {
52
- "@ctx-core/dev-tools": "workspace:^7.2.1",
53
- "@ctx-core/uri": "workspace:^12.0.17",
54
- "@swc/cli": "^0.1.51",
55
- "@swc/core": "^1.2.108",
56
- "typescript": "^4.4.4"
57
- },
58
- "publishConfig": {
59
- "access": "public",
60
- "cache": "~/.npm"
61
- }
62
- }
2
+ "name": "@ctx-core/auth0-management",
3
+ "version": "6.0.104",
4
+ "description": "ctx-core auth0 management api",
5
+ "keywords": [
6
+ "ctx-core",
7
+ "auth0"
8
+ ],
9
+ "homepage": "https://github.com/ctx-core/auth0-management#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/ctx-core/auth0-management/issues"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/ctx-core/auth0-management.git"
16
+ },
17
+ "license": "Apache-2.0",
18
+ "author": "Brian Takita",
19
+ "type": "module",
20
+ "main": "./dist/index.js",
21
+ "module": "./dist/index.js",
22
+ "types": "./src/index.ts",
23
+ "exports": {
24
+ ".": {
25
+ "require": "./dist/index.cjs",
26
+ "import": "./dist/index.js"
27
+ },
28
+ "./package.json": "./package.json"
29
+ },
30
+ "bin": {
31
+ "add-grant-password-auth0": "./bin/add-grant-password-auth0.mjs",
32
+ "auth0": "./bin/auth0.mjs",
33
+ "getAll-client-grants-auth0": "./bin/getAll-client-grants-auth0.mjs"
34
+ },
35
+ "dependencies": {
36
+ "@ctx-core/auth0": "^26.0.1",
37
+ "@ctx-core/fetch": "^11.0.81",
38
+ "@ctx-core/object": "^21.0.23",
39
+ "@ctx-core/store": "^27.0.37",
40
+ "auth0": "^2.37.0",
41
+ "svelte": "3.44.1"
42
+ },
43
+ "devDependencies": {
44
+ "@ctx-core/dev-tools": "^7.2.1",
45
+ "@ctx-core/uri": "^12.0.17",
46
+ "@swc/cli": "^0.1.51",
47
+ "@swc/core": "^1.2.108",
48
+ "typescript": "^4.4.4"
49
+ },
50
+ "publishConfig": {
51
+ "access": "public",
52
+ "cache": "~/.npm"
53
+ },
54
+ "scripts": {
55
+ "build": "npm run generate_ctx_I_file && npm run compile",
56
+ "clean": "rm -rf dist",
57
+ "compile": "swc src --out-dir dist --copy-files --source-maps --config-file .swcrc",
58
+ "exec": "$@",
59
+ "generate_ctx_I_file": "swc $(./node_modules/.bin/generate_ctx_I_file | tail -n1) --out-dir dist --source-maps --config-file .swcrc"
60
+ }
61
+ }