-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 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
{
"name": "@corbado/connect-react",
"version": "0.11.5",
"description": "This package provides a set of React components to integrate passkeys into an existing authentication system.",
"author": "Martin Kellner <martin.kellner@corbado.com>",
"homepage": "https://github.com/corbado/javascript#readme",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "dist"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corbado/javascript.git"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "webpack --config webpack.prod.js",
"build:dev": "npm run clean && tsc -b",
"lint:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx"
},
"bugs": {
"url": "https://github.com/corbado/javascript/issues"
},
"dependencies": {
"@corbado/web-core": "^3.2.3-alpha.0",
"date-fns": "^3.6.0"
},
"devDependencies": {
"@corbado/types": "^3.0.2",
"@types/react": "^18.2.0",
"ts-results": "^3.3.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"gitHead": "a619d2f6de179f7bcde9385c509905a36bec453b"
}