This repository was archived by the owner on Mar 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.63 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.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
{
"name": "@cryptr/cryptr-react",
"version": "2.0.1",
"private": false,
"dependencies": {
"@cryptr/cryptr-spa-js": "^2.1.0",
"ky": "^1.4.0"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
},
"scripts": {
"build": "npm run lint && rm -rf dist && rollup -c --environment NODE_ENV:production",
"docs": "npm i --save-dev better-docs && jsdoc -c jsdoc.conf.json && npm un better-docs",
"format": "prettier --write \"**/*.+(ts|tsx|js|jsx|json|css|md)\"",
"lint": "eslint --ext=tsx ./src",
"rollup:start": "rollup -cw",
"publish:lib": "npm run build && npm publish",
"start:example": "npm start --prefix=examples/$PREFIX",
"start:example:communitiz-app": "PREFIX='communitiz-app-react-typescript' npm run start:example",
"build:start:example:communitiz-app": "npm run build:install:example:communitiz-app && npm run start:example:communitiz-app",
"build:install:example": "npm i --prefix=examples/$PREFIX && npm run build --prefix=examples/$PREFIX",
"build:install:example:communitiz-app": "PREFIX='communitiz-app-react-typescript' npm run build:install:example"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"watch": {
"build:serve:react": {
"patterns": [
"src"
],
"extensions": "js,jsx,ts,tsx"
}
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-transform-modules-umd": "^7.24.1",
"@babel/preset-react": "^7.24.7",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.4.1",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-plugin-typescript-to-proptypes": "^2.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.5.0-next-fc47cb1b6-20220404",
"jest": "^27.5.1",
"jsdoc": "^4.0.2",
"prettier": "^2.0.5",
"prettier-eslint": "^16.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-intl": "^5.8.8",
"react-router-dom": "^5.2.0",
"rollup": "^2.70.1",
"rollup-plugin-analyzer": "^3.3.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^27.1.4",
"typescript": "^4.5.2",
"web-vitals": "^0.2.4"
},
"description": "Cryptr React Authentication SDK",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"module": "dist/index.modern.js",
"files": [
"dist",
"README.md"
],
"keywords": [
"cryptr",
"react",
"sdk",
"authentication",
"passwordless",
"sso",
"slo",
"gateway"
],
"author": "Cryptr (https://www.cryptr.co)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/cryptr-auth/cryptr-react.git"
},
"bugs": "https://github.com/cryptr-auth/cryptr-react/issues",
"homepage": "."
}