-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.15 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
{
"name": "@aulasoftwarelibre/next-auth-firewall",
"version": "2.0.0",
"description": "Firewall for NextAuth",
"author": "Sergio Gómez <decano@gmail.com>",
"license": "EUPL-1.2",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsup",
"changeset": "changeset",
"ci:release": "pnpm clean && pnpm build && changeset publish",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"clean": "rm -rf dist",
"dev": "tsup --watch",
"lint": "eslint --fix src/ tests/",
"prepare": "husky",
"prettier-check": "prettier --check \"./**/*.ts*\"",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"next": "^15.0.3",
"next-auth": "5.0.0-beta.25"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.13.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.17.1",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort": "^4.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.11.0",
"husky": "^9.1.7",
"just-pnpm": "^1.0.2",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"tsup": "^8.3.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.3"
},
"packageManager": "pnpm@9.12.3",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/aulasoftwarelibre/next-auth-firewall",
"repository": {
"type": "git",
"url": "git+https://github.com/aulasoftwarelibre/next-auth-firewall.git"
},
"bugs": {
"url": "https://github.com/aulasoftwarelibre/next-auth-firewall/issues"
}
}