-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.63 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 4.63 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@pakt/auth-module",
"license": "MIT",
"version": "2.0.9",
"repository": "git://github.com/pakt-world/Pakt-Auth-Module.git",
"description": "Authentication module for Pakt applications",
"author": "Pakt",
"main": "./dist/auth-module.cjs.js",
"module": "./dist/auth-module.es.js",
"jsnext:main": "./dist/auth-module.es.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"flush": "rm -rf dist",
"build": "yarn flush && vite build",
"lint": "eslint --fix 'src/**/*'",
"test": "jest",
"dev": " vite",
"ts-types": " tsc --emitDeclarationOnly",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"publish:new": "yarn publish --non-interactive",
"build:major": "yarn version --major && git push origin development && yarn publish:new",
"build:minor": "yarn version --minor && git push origin development && yarn publish:new",
"build:patch": "yarn version --patch && git push origin development && yarn publish:new",
"postbuild": "node rename-types.js"
},
"homepage": "https://github.com/pakt-world/Pakt-Auth-Module#readme",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-class-properties": "^7.25.4",
"@babel/plugin-transform-object-rest-spread": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@tanstack/eslint-plugin-query": "^5.59.2",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.7.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"babel-plugin-dynamic-import-node": "^2.3.3",
"core-js": "^3.38.1",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rollup-plugin-visualizer": "^5.12.0",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^4",
"tailwindcss-radix": "4",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.0",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-static-copy": "^1.0.6"
},
"files": [
"dist"
],
"keywords": [
"authentication",
"auth",
"login",
"signup",
"oauth"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"peerDependencies": {
"@react-oauth/google": "^0.12.1",
"@tanstack/react-query": "^5.59.0",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"framer-motion": "^11.9.0",
"lottie-react": "^2.4.0",
"lucide-react": "^0.446.0",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.5.2",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@hookform/resolvers": "^3.1.1",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-visually-hidden": "^1.1.0",
"@react-oauth/google": "^0.12.1",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-query-devtools": "^4.35.3",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"framer-motion": "^11.9.0",
"lottie-react": "^2.4.0",
"lucide-react": "^0.446.0",
"pakt-sdk": "^0.1.48-beta",
"react": "^19.1.4",
"react-dom": "^19.1.4",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"react-loading-skeleton": "^3.5.0",
"react-otp-input": "^3.0.4",
"usehooks-ts": "^2.9.4",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
}
}