@h3ravel/session 0.1.0-alpha.1

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/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@h3ravel/session",
3
+ "version": "0.1.0-alpha.1",
4
+ "description": "Provides a unified session management layer for h3ravel, with secure encryption, consistent API design, and optional adapters (memory, file, redis, db).",
5
+ "h3ravel": {
6
+ "providers": [
7
+ "SessionServiceProvider"
8
+ ]
9
+ },
10
+ "type": "module",
11
+ "main": "./dist/index.cjs",
12
+ "types": "./dist/index.d.ts",
13
+ "module": "./dist/index.js",
14
+ "exports": {
15
+ ".": {
16
+ "import": "./dist/index.js",
17
+ "require": "./dist/index.cjs"
18
+ },
19
+ "./*": "./*"
20
+ },
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "homepage": "https://h3ravel.toneflix.net",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/h3ravel/framework.git",
31
+ "directory": "packages/session"
32
+ },
33
+ "keywords": [
34
+ "h3ravel",
35
+ "modern",
36
+ "web",
37
+ "H3",
38
+ "framework",
39
+ "nodejs",
40
+ "typescript",
41
+ "laravel",
42
+ "persist",
43
+ "session"
44
+ ],
45
+ "peerDependencies": {
46
+ "@h3ravel/database": "^11.5.0-alpha.1",
47
+ "@h3ravel/shared": "^0.29.0-alpha.1",
48
+ "@h3ravel/foundation": "^0.1.0-alpha.1"
49
+ },
50
+ "devDependencies": {
51
+ "typescript": "^5.4.0",
52
+ "@h3ravel/contracts": "^0.29.0-alpha.1"
53
+ },
54
+ "scripts": {
55
+ "build": "tsdown --config-loader unconfig",
56
+ "dev": "tsx watch src/index.ts",
57
+ "start": "node dist/index.js",
58
+ "lint": "eslint . --ext .ts",
59
+ "test": "jest --passWithNoTests",
60
+ "version-patch": "pnpm version patch"
61
+ }
62
+ }