forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 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
{
"name": "@clerk/tanstack-start",
"version": "0.4.28",
"description": "Clerk SDK for TanStack Start",
"keywords": [
"clerk",
"typescript",
"tanstack start",
"auth",
"authentication",
"passwordless",
"session",
"jwt"
],
"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/tanstack-start"
},
"license": "MIT",
"author": "Clerk",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"default": "./dist/server/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"server"
],
"scripts": {
"build": "pnpm clean && tsup",
"build:declarations": "tsc -p tsconfig.declarations.json",
"clean": "rimraf ./dist",
"dev": "tsup --watch",
"dev:publish": "pnpm dev -- --env.publish",
"lint": "eslint src/",
"lint:attw": "attw --pack . --ignore-rules cjs-resolves-to-esm",
"lint:publint": "publint",
"publish:local": "pnpm dlx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "1.16.4",
"@clerk/clerk-react": "5.15.5",
"@clerk/shared": "2.14.0",
"@clerk/types": "4.34.0",
"tslib": "2.4.1"
},
"devDependencies": {
"@clerk/eslint-config-custom": "workspace:*",
"@tanstack/react-router": "^1.81.9",
"@tanstack/start": "^1.81.9",
"@types/node": "^18.19.43",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"esbuild-plugin-file-path-extensions": "^2.1.2",
"typescript": "*",
"vinxi": "^0.4.1"
},
"peerDependencies": {
"@tanstack/react-router": ">=1.81.9",
"@tanstack/start": ">=1.81.9",
"react": ">=18 || >=19.0.0-beta",
"react-dom": ">=18 || >=19.0.0-beta"
},
"engines": {
"node": ">=18.17.0"
},
"publishConfig": {
"access": "public"
}
}