-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.67 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.67 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@workos/authkit-tanstack-react-start",
"version": "0.5.0",
"description": "The WorkOS library for TanStack React Start provides convenient helpers for authentication and session management using WorkOS & AuthKit with TanStack React Start.",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"dev": "tsc --watch",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build && npm run format:check && npm run lint && npm run typecheck && npm test",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"workos",
"authkit",
"authentication",
"auth",
"tanstack",
"tanstack-start",
"react-start",
"react",
"session",
"oauth",
"sso"
],
"author": "WorkOS",
"license": "MIT",
"sideEffects": false,
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/workos/authkit-tanstack-start#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/workos/authkit-tanstack-start.git"
},
"bugs": {
"url": "https://github.com/workos/authkit-tanstack-start/issues"
},
"dependencies": {
"@workos/authkit-session": "0.3.4"
},
"peerDependencies": {
"@tanstack/react-router": ">=1.0.0",
"@tanstack/react-start": ">=1.0.0",
"react": "^18.0 || ^19.0",
"react-dom": "^18.0 || ^19.0"
},
"devDependencies": {
"@tanstack/react-router": "^1.154.8",
"@tanstack/react-router-devtools": "^1.154.8",
"@tanstack/react-start": "^1.154.8",
"@tanstack/start-server-core": "^1.154.8",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.2",
"@vitest/coverage-v8": "4.0.15",
"@vitest/ui": "^4.0.15",
"happy-dom": "^20.0.11",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild"
]
}
}