-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.22 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
{
"name": "@authdog/react-elements",
"version": "0.4.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"sideEffects": [
"./dist/global.css",
"./dist/styles.css"
],
"repository": {
"type": "git",
"url": "git+https://github.com/authdog-labs/web-sdk.git",
"directory": "packages/react-elements"
},
"homepage": "https://github.com/authdog-labs/web-sdk/tree/main/packages/react-elements#readme",
"bugs": {
"url": "https://github.com/authdog-labs/web-sdk/issues"
},
"scripts": {
"test": "vitest run --config vitest.unit.config.ts",
"ui": "bunx shadcn@latest",
"lint": "eslint .",
"build:styles": "postcss src/global.css -o dist/styles.css",
"build": "tsup && bun run build:styles",
"storybook": "storybook dev -p 7007",
"build-storybook": "storybook build",
"deploy-docs": "bun run build-storybook && cp wrangler.prod.toml wrangler.toml && wrangler pages deploy"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0",
"react-dom": "^18.2.0 || ^19.0.0"
},
"devDependencies": {
"@authdog/eslint-config": "workspace:*",
"@authdog/typescript-config": "workspace:*",
"@storybook/addon-a11y": "^10.1.3",
"eslint": "^9.15.0",
"@storybook/addon-docs": "10.1.3",
"@storybook/addon-links": "^10.1.3",
"@storybook/react-vite": "^10.1.3",
"@types/node": "^26.0.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"autoprefixer": "^10",
"css-loader": "^7.0.0",
"eslint-plugin-storybook": "^10.4.6",
"next": "16.2.9",
"postcss": "^8",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6",
"react": "19.2.7",
"react-dom": "19.2.7",
"storybook": "^10.1.3",
"style-loader": "^3.3.3",
"tailwindcss": "3.4.19",
"ts-loader": "^9.5.1",
"typescript": "5.9.3",
"vite": "^8.0.0",
"vitest": "^3.2.6",
"webpack": "^5.89.0"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.9",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-dropdown-menu": "^2.1.14",
"@radix-ui/react-label": "^2.1.6",
"@radix-ui/react-separator": "^1.1.6",
"@radix-ui/react-slot": "^1.3.0",
"@stripe/react-stripe-js": "^6.8.0",
"@stripe/stripe-js": "^9.12.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./global.css": "./dist/global.css",
"./postcss.config": "./dist/postcss.config.mjs",
"./tailwind.config": "./dist/tailwind.config.ts",
"./lib/*": {
"types": "./dist/lib/*.d.ts",
"import": "./dist/lib/*.mjs",
"require": "./dist/lib/*.js"
},
"./components/ui/*": {
"types": "./dist/components/ui/*.d.ts",
"import": "./dist/components/ui/*.mjs",
"require": "./dist/components/ui/*.js"
},
"./styles.css": "./dist/styles.css"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}