-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.59 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.59 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
{
"name": "@fleek-platform/login-button",
"version": "2.16.0",
"description": "A standalone login component with an embedded Dynamic modal that functions independently of host application.",
"repository": "https://github.com/fleek-platform/login-button",
"homepage": "https://github.com/fleek-platform/login-button",
"keywords": [
"fleek",
"auth",
"dynamic"
],
"license": "MIT",
"type": "module",
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/bundle.js",
"types": "./dist/index.d.ts"
},
"./styles": {
"import": "./dist/styles/main.min.css"
}
},
"scripts": {
"build": "pnpm clean:dist && pnpm exec bun build.ts && pnpm run transpile && pnpm tailwind:build",
"changeset:add": "pnpm exec changeset",
"changeset:status": "pnpm exec changeset status",
"changeset:version": "pnpm exec changeset version",
"clean": "pnpm \"/^clean:.*/\"",
"clean:dist": "rm -rf dist",
"clean:node": "rm -rf node_modules",
"clean:dot_install": "rm -rf .install",
"format": "pnpm exec biome format --write ./src",
"format:check": "pnpm exec biome format ./src",
"generate:local_package": "pnpm build && .scripts/generate_npm_package",
"lint": "pnpm exec biome lint --write --no-errors-on-unmatched ./src",
"lint:check": "pnpm exec biome lint ./src",
"tailwind:build": "pnpm exec tailwindcss -i ./src/styles/globals.css -c tailwind.config.mjs -o dist/styles/main.min.css --minify",
"transpile": "pnpm exec tsc -p tsconfig.json",
"prepare": "husky"
},
"dependencies": {
"@dynamic-labs/ethereum": "4.14.0",
"@dynamic-labs/sdk-react-core": "4.14.0",
"@fleek-platform/utils-token": "^0.2.2",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@types/lodash-es": "^4.17.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"lodash-es": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.4",
"viem": "^2.21.55",
"zustand": "^5.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.9",
"@types/luxon": "^3.4.2",
"@types/node": "^20",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.9",
"bun": "^1.1.45",
"esbuild": "^0.24.2",
"husky": "^9.1.7",
"pino-pretty": "^13.0.0",
"typescript": "5.6.2"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
}
}