@tydavidson/design-system 1.2.5 → 1.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -18
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tydavidson/design-system",
|
3
|
-
"version": "1.2.
|
3
|
+
"version": "1.2.7",
|
4
4
|
"description": "Float Design System with email components and theme system",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"module": "./dist/index.mjs",
|
@@ -47,22 +47,6 @@
|
|
47
47
|
},
|
48
48
|
"author": "Float Technologies",
|
49
49
|
"license": "ISC",
|
50
|
-
"scripts": {
|
51
|
-
"dev": "next dev",
|
52
|
-
"build": "next build",
|
53
|
-
"start": "next start",
|
54
|
-
"lint": "next lint",
|
55
|
-
"ui:add": "pnpm dlx shadcn-ui@latest add",
|
56
|
-
"storybook": "storybook dev -p 6006",
|
57
|
-
"build-storybook": "storybook build",
|
58
|
-
"build:lib": "tsup",
|
59
|
-
"build:email": "tsc --project tsconfig.email.json",
|
60
|
-
"build:all": "npm run build:lib && npm run build:email && npm run copy-css",
|
61
|
-
"copy-css": "mkdir -p dist/styles && cp src/app/globals.css dist/styles/globals.css",
|
62
|
-
"prepublishOnly": "npm run build:all",
|
63
|
-
"clean": "rm -rf dist",
|
64
|
-
"dev:lib": "npm run build:all -- --watch"
|
65
|
-
},
|
66
50
|
"dependencies": {
|
67
51
|
"@clerk/nextjs": "^6.19.2",
|
68
52
|
"@radix-ui/react-accordion": "^1.2.8",
|
@@ -129,5 +113,20 @@
|
|
129
113
|
"tailwindcss-animate": "^1.0.7",
|
130
114
|
"tsup": "^8.5.0",
|
131
115
|
"typescript": "^5.3.3"
|
116
|
+
},
|
117
|
+
"scripts": {
|
118
|
+
"dev": "next dev",
|
119
|
+
"build": "next build",
|
120
|
+
"start": "next start",
|
121
|
+
"lint": "next lint",
|
122
|
+
"ui:add": "pnpm dlx shadcn-ui@latest add",
|
123
|
+
"storybook": "storybook dev -p 6006",
|
124
|
+
"build-storybook": "storybook build",
|
125
|
+
"build:lib": "tsup",
|
126
|
+
"build:email": "tsc --project tsconfig.email.json",
|
127
|
+
"build:all": "npm run build:lib && npm run build:email && npm run copy-css",
|
128
|
+
"copy-css": "mkdir -p dist/styles && cp src/app/globals.css dist/styles/globals.css",
|
129
|
+
"clean": "rm -rf dist",
|
130
|
+
"dev:lib": "npm run build:all -- --watch"
|
132
131
|
}
|
133
|
-
}
|
132
|
+
}
|