Initial Commit

This commit is contained in:
2026-05-24 14:26:34 +02:00
commit c99568a59a
12 changed files with 2744 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "ssesession",
"version": "0.0.1",
"description": "",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}