forked from koole/react-sanctum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 KB
/
package.json
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
{
"name": "react-sanctum",
"version": "3.0.0",
"description": "Easily hook up your React app to Laravel Sanctum",
"main": "build/index.cjs.ts",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "cypress run",
"test-and-record": "cypress run --record"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koole/react-sanctum.git"
},
"keywords": [
"react",
"laravel",
"sanctum"
],
"author": "Leon Koole <leon@koole.io> (https://github.com/koole)",
"license": "MIT",
"bugs": {
"url": "https://github.com/koole/react-sanctum/issues"
},
"homepage": "https://github.com/koole/react-sanctum#readme",
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.3",
"cypress": "^12.2.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.32.1",
"rollup-plugin-typescript2": "^0.34.0",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.1.3"
},
"peerDependencies": {
"react": "^16.13.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.13.0 || ^17.0.0 || ^18.0.0"
},
"files": [
"build"
]
}