-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
{
"name": "@forward-software/react-auth",
"description": "Simplify your Auth flow when working with React apps",
"version": "2.1.0",
"author": "ForWarD Software (https://forwardsoftware.solutions/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/forwardsoftware/react-auth.git",
"directory": "lib"
},
"homepage": "https://github.com/forwardsoftware/react-auth/tree/main/lib#readme",
"keywords": [
"react",
"react-native",
"auth",
"authentication"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"react-native": "dist/index.js",
"source": "src/index.tsx",
"files": [
"dist",
"src"
],
"scripts": {
"build:code": "tsc --removeComments",
"build:types": "tsc --declaration --emitDeclarationOnly",
"build": "run-p clean build:*",
"lint": "eslint src",
"test": "vitest",
"test:watch": "vitest watch",
"clean": "rimraf dist"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.5.2",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"jsdom": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"dependencies": {},
"peerDependencies": {
"react": ">=16.8"
}
}