-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.47 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.47 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
{
"version": "2.0.2",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=18"
},
"repository": "https://github.com/authorizerdev/authorizer-react",
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"test": "echo \"No tests specified\" && exit 0",
"lint": "eslint src --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"prepare": "tsup",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@authorizerdev/authorizer-react",
"author": "Lakhan Samani",
"size-limit": [
{
"path": "dist/index.cjs",
"limit": "200 KB"
},
{
"path": "dist/index.mjs",
"limit": "200 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.0",
"@storybook/addon-essentials": "8.4.0",
"@storybook/addon-interactions": "8.4.0",
"@storybook/addon-links": "8.4.0",
"@storybook/addon-onboarding": "8.4.0",
"@storybook/addon-styling-webpack": "1.0.0",
"@storybook/addon-webpack5-compiler-swc": "1.0.5",
"@storybook/blocks": "8.4.0",
"@storybook/react": "8.4.0",
"@storybook/react-webpack5": "8.4.0",
"@storybook/test": "8.4.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/validator": "^13.11.7",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"postcss-modules": "^6.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"size-limit": "^11.1.0",
"storybook": "^8.6.18",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@authorizerdev/authorizer-js": "3.0.0",
"@storybook/preset-scss": "^1.0.3",
"validator": "^13.11.0"
}
}