-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 980 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 980 Bytes
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
{
"name": "@workos-inc/authkit-react",
"version": "0.16.1",
"description": "AuthKit React SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/workos/authkit-react.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/workos/authkit-react/issues"
},
"homepage": "https://github.com/workos/authkit-react#readme",
"devDependencies": {
"@types/react": "18.3.3",
"prettier": "^3.4.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "5.5.3"
},
"peerDependencies": {
"react": ">=17"
},
"dependencies": {
"@workos-inc/authkit-js": "0.20.0"
}
}