-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "narvik",
"version": "0.2.15",
"description": "A simple, session based authentication library",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"coverage": "vitest run --coverage --reporter=basic --outputFile=./test-output.json"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gnk-softworks/narvik.git"
},
"keywords": [
"narvik",
"narvik-auth",
"authentication",
"auth",
"nextjs",
"nextjs auth",
"lucia",
"session",
"sessions",
"cookie",
"cookies"
],
"author": "Kawba",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/gnk-softworks/narvik/issues"
},
"homepage": "https://github.com/gnk-softworks/narvik#readme",
"dependencies": {
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^2.1.2",
"typescript": "^5.4.5",
"vitest": "^2.1.2"
}
}