-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.27 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.27 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
{
"name": "authkit-react-native",
"version": "0.1.0",
"description": "WorkOS AuthKit integration for React Native — OAuth 2.0 PKCE auth with token storage, session restoration, and automatic refresh",
"license": "MIT",
"packageManager": "pnpm@10.28.1",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"prepare": "simple-git-hooks",
"prepublishOnly": "tsup",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"publishConfig": {
"provenance": true
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshuabaker/authkit-react-native.git"
},
"homepage": "https://github.com/joshuabaker/authkit-react-native#readme",
"bugs": {
"url": "https://github.com/joshuabaker/authkit-react-native/issues"
},
"keywords": [
"workos",
"authkit",
"react-native",
"expo",
"oauth",
"pkce",
"authentication",
"zustand"
],
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=2",
"expo-auth-session": ">=5",
"expo-secure-store": ">=13",
"expo-web-browser": ">=13",
"react": ">=18",
"zustand": ">=4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@react-native-async-storage/async-storage": "^2.2.0",
"@vitest/coverage-v8": "^4.1.0",
"expo-auth-session": "^55.0.7",
"expo-secure-store": "^55.0.8",
"expo-web-browser": "^55.0.9",
"lint-staged": "^16.1.0",
"prettier": "^3.8.1",
"react": "^19.2.0",
"simple-git-hooks": "^2.13.0",
"tsup": "^8.4.0",
"typescript": "^5.0.0",
"vitest": "^4.1.0",
"zustand": "^5.0.12"
}
}