forked from hattipjs/hattip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 KB
/
package.json
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@hattip/session",
"version": "0.0.46",
"type": "module",
"description": "Session management for Hattip",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"typesVersions": {
"*": {
"*": [
"./dist/*.d.ts"
]
}
},
"author": "Fatih Aygün <[email protected]>",
"repository": "https://github.com/hattipjs/hattip",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsup",
"dev": "tsup --watch",
"prepack": "pnpm build",
"test": "pnpm test:typecheck && pnpm test:lint && pnpm test:package && pnpm test:unit",
"test:typecheck": "tsc -p tsconfig.json --noEmit",
"test:lint": "eslint . --max-warnings 0 --ignore-pattern dist",
"test:package": "publint --strict",
"test:unit": "vitest run"
},
"dependencies": {
"@hattip/compose": "workspace:*",
"@hattip/cookie": "workspace:*",
"@hattip/core": "workspace:*"
},
"devDependencies": {
"@cyco130/eslint-config": "^3.9.1",
"@hattip/polyfills": "workspace:*",
"@miniflare/kv": "^2.14.2",
"@miniflare/storage-memory": "^2.14.2",
"@types/node": "^20.14.5",
"@types/redis-mock": "^0.17.3",
"eslint": "^8.57.0",
"publint": "^0.2.8",
"redis-mock": "^0.56.3",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}