-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 758 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 758 Bytes
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
{
"name": "tiny-session",
"version": "0.0.1",
"author": {
"email": "marek@dayone.pl",
"name": "Marek Piechut",
"url": "https://marekpiechut.github.io"
},
"license": "MIT",
"engines": {
"node": ">= 18"
},
"description": "A tiny session library ideal for Cloudflare Workers",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"devDependencies": {
"@cloudflare/workers-types": "^3.13.0",
"@types/jest": "^28.1.2",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3",
"wrangler": "2.0.14"
},
"private": true,
"scripts": {
"build": "tsc -b",
"test": "jest",
"typecheck": "tsc --noEmit"
}
}