@dsai-io/tools 1.2.1 → 1.2.3
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/README.md +10 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# @dsai-io/tools
|
|
2
2
|
|
|
3
|
-
> Build tooling, component registry, and CLI for the DSAi Design System
|
|
3
|
+
> Build tooling, component registry, and CLI for the [DSAi Design System](https://github.com/michelve/dsai)
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@dsai-io/tools)
|
|
6
6
|
|
|
7
|
+
> **Beta** -- DSAi is currently in active development and not yet generally available. APIs and interfaces may change between releases. For early access or collaboration inquiries, see the [DSAi repository](https://github.com/michelve/dsai).
|
|
8
|
+
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
9
11
|
```bash
|
|
@@ -202,6 +204,13 @@ writeRegistryItems(tree, {
|
|
|
202
204
|
|
|
203
205
|
- `style-dictionary@^5.0.0` (optional) -- required for token building
|
|
204
206
|
|
|
207
|
+
## Resources
|
|
208
|
+
|
|
209
|
+
- [DSAi Design System](https://github.com/michelve/dsai) -- monorepo with components, tools, tokens, and Storybook
|
|
210
|
+
- [DSAi Starter Template](https://github.com/michelve/draft_v0) -- official starter app (React 19, Bootstrap 5, Express, Prisma)
|
|
211
|
+
- [@dsai-io/tools on npm](https://www.npmjs.com/package/@dsai-io/tools)
|
|
212
|
+
- [@dsai-io/figma-tokens on npm](https://www.npmjs.com/package/@dsai-io/figma-tokens)
|
|
213
|
+
|
|
205
214
|
## License
|
|
206
215
|
|
|
207
216
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dsai-io/tools",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Build tooling and CLI for DSAi Design System",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"files": [
|
|
46
46
|
"dist",
|
|
47
47
|
"bin",
|
|
48
|
-
"templates"
|
|
48
|
+
"templates",
|
|
49
|
+
"README.md"
|
|
49
50
|
],
|
|
50
51
|
"scripts": {
|
|
51
52
|
"build": "tsup",
|