-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.89 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.89 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
{
"name": "@0xsequence/design-system",
"version": "3.2.9",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"style": "dist/index.css",
"types": "dist/index.d.ts",
"homepage": "https://0xsequence.github.io/design-system/",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./index.css": "./dist/index.css",
"./preset": "./dist/index.css"
},
"files": [
"dist/**"
],
"scripts": {
"dev": "pnpm storybook",
"build": "tsup",
"build:icons": "pnpm svgr --out-dir ./src/icons ./public/static/icons --config-file ./svgr.config.json --template ./src/icons/icon-template.cjs --index-template ./src/icons/index-template.cjs",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build -o ./docs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint './src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx}'",
"prettier": "prettier --list-different --write src/**/*.{ts,tsx}",
"prettier:fix": "prettier --list-different --write src/**/*.{ts,tsx}",
"format": "pnpm run lint:fix && pnpm run prettier:fix",
"prepare": "husky",
"prepack": "pnpm build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm build && pnpm test && changeset publish",
"attw": "attw --pack .",
"knip": "knip"
},
"dependencies": {
"@radix-ui/react-aspect-ratio": "^1.1.8",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-visually-hidden": "^1.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^10.0.1",
"@storybook/addon-designs": "^11.1.2",
"@storybook/addon-docs": "^10.2.13",
"@storybook/react-vite": "^10.2.13",
"@svgr/cli": "^8.1.0",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "10.2.13",
"happy-dom": "^20.7.0",
"husky": "^9.1.7",
"knip": "^5.85.0",
"motion": "^12.34.3",
"ox": "^0.13.1",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"storybook": "^10.2.13",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"motion": ">= 12",
"react": ">= 17",
"react-dom": ">= 17",
"react-hook-form": ">= 7"
},
"packageManager": "pnpm@10.30.1"
}