-
-
Notifications
You must be signed in to change notification settings - Fork 251
/
package.json
79 lines (79 loc) · 2.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "iron-session",
"version": "8.0.3",
"description": "Secure, stateless, and cookie-based session library for JavaScript",
"keywords": [
"session",
"secure",
"stateless",
"cookie",
"encryption",
"security",
"next.js",
"node.js"
],
"bugs": "https://github.com/vvo/iron-session/issues",
"repository": "github:vvo/iron-session",
"funding": [
"https://github.com/sponsors/vvo",
"https://github.com/sponsors/brc-dd"
],
"license": "MIT",
"author": "Vincent Voyer <[email protected]> (https://github.com/vvo)",
"sideEffects": false,
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "./dist/index.cjs",
"files": [
"dist/*"
],
"scripts": {
"build": "tsup",
"dev": "pnpm build && concurrently \"pnpm build --watch\" \"pnpm --filter=next-example dev\" ",
"lint": "tsc --noEmit && tsc --noEmit -p examples/next/tsconfig.json && pnpm eslint . && publint",
"prepare": "pnpm build && tsc --noEmit",
"start": "turbo start --filter=next-example",
"test": "c8 -r text -r lcov node --import tsx --test src/*.test.ts && pnpm build",
"test:watch": "node --import tsx --test --watch src/*.test.ts"
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson"
],
"trailingComma": "all"
},
"dependencies": {
"cookie": "0.6.0",
"iron-webcrypto": "1.2.1",
"uncrypto": "0.1.3"
},
"devDependencies": {
"@types/cookie": "0.6.0",
"@types/node": "20.16.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"c8": "10.1.2",
"concurrently": "8.2.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.3",
"publint": "0.2.12",
"tsup": "8.3.5",
"tsx": "4.19.2",
"turbo": "^2.0.5",
"typescript": "5.5.4"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}