-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.4 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
120
121
122
{
"name": "commerce-elements",
"version": "0.2.0",
"description": "A collection of modern, accessible commerce UI components",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./styles": "./dist/styles.css",
"./tailwind": "./tailwind.preset.js"
},
"files": [
"dist",
"tailwind.preset.js"
],
"keywords": [
"react",
"components",
"ui",
"commerce",
"button",
"tailwind"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/makeswift/commerce-elements.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --config vite.config.lib.js && tsc --project tsconfig.lib.json && cp src/styles.css dist/styles.css",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"story": "storybook dev -p 6006",
"build-story": "storybook build",
"prepublishOnly": "pnpm run build:lib",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.545.0"
},
"peerDependencies": {
"@tailwindcss/container-queries": "^0.1.0",
"@tailwindcss/typography": "^0.5.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"tailwindcss": "^3.0.0",
"tailwindcss-animate": "^1.0.0"
},
"peerDependenciesMeta": {
"@tailwindcss/container-queries": {
"optional": true
},
"@tailwindcss/typography": {
"optional": true
},
"tailwindcss-animate": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@chromatic-com/storybook": "^4.1.1",
"@eslint/js": "^9.36.0",
"@storybook/addon-a11y": "^9.1.10",
"@storybook/addon-docs": "^9.1.10",
"@storybook/addon-onboarding": "^9.1.10",
"@storybook/addon-vitest": "^9.1.10",
"@storybook/react-vite": "^9.1.10",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.19",
"@types/prop-types": "^15.7.15",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.36.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"eslint-plugin-storybook": "^9.1.10",
"globals": "^16.4.0",
"playwright": "^1.56.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.0",
"prop-types": "^15.8.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"storybook": "^9.1.10",
"tailwindcss": "3",
"tailwindcss-animate": "^1.0.7",
"typescript-eslint": "^8",
"vite": "^7.1.7",
"vitest": "^3.2.4"
}
}