@ctx-core/session 9.0.51 → 9.0.54

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @ctx-core/session
2
2
 
3
+ ## 9.0.54
4
+
5
+ ### Patch Changes
6
+
7
+ - update dependencies
8
+
9
+ ## 9.0.53
10
+
11
+ ### Patch Changes
12
+
13
+ - update dependencies
14
+
15
+ ## 9.0.52
16
+
17
+ ### Patch Changes
18
+
19
+ - update dependencies
20
+ - Updated dependencies
21
+ - @ctx-core/env@16.0.5
22
+
3
23
  ## 9.0.51
4
24
 
5
25
  ### Patch Changes
Binary file
package/package.json CHANGED
@@ -1,51 +1,52 @@
1
1
  {
2
- "name": "@ctx-core/session",
3
- "version": "9.0.51",
4
- "description": "ctx-core session",
5
- "keywords": [
6
- "ctx-core",
7
- "session"
8
- ],
9
- "homepage": "https://github.com/ctx-core/session#readme",
10
- "bugs": {
11
- "url": "https://github.com/ctx-core/session/issues"
12
- },
13
- "repository": {
14
- "type": "git",
15
- "url": "https://github.com/ctx-core/session.git"
16
- },
17
- "license": "Apache-2.0",
18
- "author": "Brian Takita",
19
- "type": "module",
20
- "types": "./lib/index.d.ts",
21
- "exports": {
22
- ".": {
23
- "import": "./lib/index.js"
24
- },
25
- "./package.json": "./package.json"
26
- },
27
- "dependencies": {
28
- "@ctx-core/env": "^16.0.3"
29
- },
30
- "devDependencies": {
31
- "@swc/cli": "^0.1.55",
32
- "@swc/core": "^1.2.136",
33
- "rimraf": "^3.0.2",
34
- "typescript": "next"
35
- },
36
- "publishConfig": {
37
- "access": "public",
38
- "cache": "~/.npm"
39
- },
40
- "svelte": "./lib/index.js",
41
- "sideEffects": false,
42
- "scripts": {
43
- "build": "npm run compile",
44
- "clean": "rimraf lib && npm run clean:tsbuildinfo",
45
- "clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts",
46
- "compile": "npm run compile:source && npm run compile:declaration",
47
- "compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc",
48
- "compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib",
49
- "exec": "$@"
50
- }
2
+ "name": "@ctx-core/session",
3
+ "version": "9.0.54",
4
+ "description": "ctx-core session",
5
+ "keywords": [
6
+ "ctx-core",
7
+ "session"
8
+ ],
9
+ "homepage": "https://github.com/ctx-core/session#readme",
10
+ "bugs": {
11
+ "url": "https://github.com/ctx-core/session/issues"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/ctx-core/session.git"
16
+ },
17
+ "license": "Apache-2.0",
18
+ "author": "Brian Takita",
19
+ "type": "module",
20
+ "types": "./lib/index.d.ts",
21
+ "exports": {
22
+ ".": {
23
+ "import": "./lib/index.js"
24
+ },
25
+ "./package.json": "./package.json"
26
+ },
27
+ "scripts": {
28
+ "build": "npm run compile",
29
+ "clean": "rimraf lib && npm run clean:tsbuildinfo",
30
+ "clean:tsbuildinfo": "rimraf tsconfig.tsbuildinfo && rimraf lib/**/*.d.ts",
31
+ "compile": "npm run compile:source && npm run compile:declaration",
32
+ "compile:source": "swc src --out-dir lib --copy-files --source-maps --config-file .swcrc",
33
+ "compile:declaration": "npm run clean:tsbuildinfo && tsc --declaration --emitDeclarationOnly --declarationDir lib",
34
+ "exec": "$@",
35
+ "prepublishOnly": "npm run clean && npm run build"
36
+ },
37
+ "dependencies": {
38
+ "@ctx-core/env": "^16.0.9"
39
+ },
40
+ "devDependencies": {
41
+ "@swc/cli": "^0.1.55",
42
+ "@swc/core": "^1.2.152",
43
+ "rimraf": "^3.0.2",
44
+ "typescript": "next"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public",
48
+ "cache": "~/.npm"
49
+ },
50
+ "svelte": "./lib/index.js",
51
+ "sideEffects": false
51
52
  }