-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.12 KB
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
80
81
82
83
84
85
86
87
{
"name": "@clerk/eslint-plugin",
"version": "0.2.0",
"description": "ESLint plugin for enforcing Clerk patterns across JavaScript frameworks.",
"keywords": [
"auth",
"authentication",
"eslint",
"eslintplugin",
"eslint-plugin",
"next",
"nextjs",
"clerk"
],
"homepage": "https://clerk.com/",
"bugs": {
"url": "https://github.com/clerk/javascript/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clerk/javascript.git",
"directory": "packages/eslint-plugin"
},
"license": "MIT",
"author": "Clerk",
"sideEffects": false,
"exports": {
"./next": {
"import": {
"types": "./dist/next.d.mts",
"default": "./dist/next.mjs"
},
"require": {
"types": "./dist/next.d.ts",
"default": "./dist/next.js"
}
},
"./next/fix-auth-protection": {
"import": {
"types": "./dist/next/fix-auth-protection.d.mts",
"default": "./dist/next/fix-auth-protection.mjs"
},
"require": {
"types": "./dist/next/fix-auth-protection.d.ts",
"default": "./dist/next/fix-auth-protection.js"
}
},
"./package.json": "./package.json"
},
"bin": {
"clerk-next-fix-auth-protection": "./dist/next/fix-auth-protection-cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"clean": "rimraf ./dist",
"dev": "tsdown --watch",
"format": "node ../../scripts/format-package.mjs",
"format:check": "node ../../scripts/format-package.mjs --check",
"lint": "eslint src",
"lint:attw": "attw --pack . --profile node16",
"lint:publint": "publint",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.19.17",
"@typescript-eslint/parser": "8.58.0",
"@typescript-eslint/utils": "8.58.0",
"eslint": "9.31.0",
"tsdown": "catalog:repo",
"typescript": "catalog:repo",
"vitest": "3.2.6"
},
"peerDependencies": {
"eslint": ">=9"
},
"engines": {
"node": ">=20.9.0"
},
"publishConfig": {
"access": "public"
}
}