@stacksjs/buddy 0.48.3 → 0.49.1
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 +15 -15
- package/package.json +41 -41
package/README.md
CHANGED
|
@@ -33,8 +33,8 @@ The Stacks framework is a harmony of several “engines” to build any web and/
|
|
|
33
33
|
|
|
34
34
|
_Develop dynamic UIs with helpers for atomic design, and much more._
|
|
35
35
|
|
|
36
|
-
- 🧩 **Components** _a
|
|
37
|
-
- 🤖 **Functions**
|
|
36
|
+
- 🧩 **Components** _a primitive to develop user interfaces_
|
|
37
|
+
- 🤖 **Functions** _a primitive to develop business logic (and grant your UI superpowers)_
|
|
38
38
|
- 🌐 **Web** _"a routing & templating engine that makes sense" using components—SSG & PWA ready_
|
|
39
39
|
- 🖥️ **Desktop** _components as desktop elements_
|
|
40
40
|
- 📚 **Library** _auto-builds component & function libraries_
|
|
@@ -344,19 +344,19 @@ You may view this framework as an incredibly "useful set of frames" to assist in
|
|
|
344
344
|
|
|
345
345
|
Part of the Stacks ecosystem are the following first-party supported stacks:
|
|
346
346
|
|
|
347
|
-
- [Table](https://github.com/stacksjs/table) (
|
|
348
|
-
- [Calendar](https://github.com/stacksjs/calendar) (
|
|
349
|
-
- [Command Palette](https://github.com/stacksjs/command-palette) (
|
|
350
|
-
- [Date Picker](https://github.com/stacksjs/date-picker) (
|
|
351
|
-
- [File Manager](https://github.com/stacksjs/file-manager) (
|
|
352
|
-
- [Image](https://github.com/stacksjs/image) (
|
|
353
|
-
- [Video](https://github.com/stacksjs/video) (
|
|
354
|
-
- [Audio](https://github.com/stacksjs/audio) (
|
|
355
|
-
- [Web3](https://github.com/stacksjs/web3) (
|
|
356
|
-
- [Wallets](https://github.com/stacksjs/wallets) (
|
|
357
|
-
- [NFT](https://github.com/stacksjs/nft) (
|
|
358
|
-
- [DeFi](https://github.com/stacksjs/defi) (
|
|
359
|
-
- [DAO](https://github.com/stacksjs/dao) (
|
|
347
|
+
- [Table](https://github.com/stacksjs/table) (Data tables with ease)
|
|
348
|
+
- [Calendar](https://github.com/stacksjs/calendar) (Add to Calendar utilities—iCal, Google, and more)
|
|
349
|
+
- [Command Palette](https://github.com/stacksjs/command-palette) (`⌘ + k` for the web)
|
|
350
|
+
- [Date Picker](https://github.com/stacksjs/date-picker) (Beautiful, modern date picker)
|
|
351
|
+
- [File Manager](https://github.com/stacksjs/file-manager) (Build your own file manager—like Dropbox or Google Drive)
|
|
352
|
+
- [Image](https://github.com/stacksjs/image) (Modern image experience)
|
|
353
|
+
- [Video](https://github.com/stacksjs/video) (Modern video experience)
|
|
354
|
+
- [Audio](https://github.com/stacksjs/audio) (Modern audio experience)
|
|
355
|
+
- [Web3](https://github.com/stacksjs/web3) (Solana support, cross-chain core. _Ethereum & Cardano drivers coming._)
|
|
356
|
+
- [Wallets](https://github.com/stacksjs/wallets) (Wallet Authentication)
|
|
357
|
+
- [NFT](https://github.com/stacksjs/nft) (NFTs, Candy Machine mechanisms, and more.)
|
|
358
|
+
- [DeFi](https://github.com/stacksjs/defi) (Cross-chain DeFi engine, including staking support)
|
|
359
|
+
- [DAO](https://github.com/stacksjs/dao) (Powerful toolkit for DAO governance, including a Reddit-type of voting system)
|
|
360
360
|
|
|
361
361
|
View our detailed roadmap/s [here](https://github.com/stacksjs/stacks/projects?query=is%3Aopen), for more information. Additionally, you may find interesting stacks, information & examples over at [Awesome Stacks](https://github.com/stacksjs/awesome-stacks).
|
|
362
362
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/buddy",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.
|
|
4
|
+
"version": "0.49.1",
|
|
5
|
+
"packageManager": "pnpm@7.25.0",
|
|
6
6
|
"description": "Meet Buddy. The Stacks runtime.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -50,51 +50,51 @@
|
|
|
50
50
|
"README.md"
|
|
51
51
|
],
|
|
52
52
|
"engines": {
|
|
53
|
-
"node": ">=v18.
|
|
54
|
-
"pnpm": ">=7.
|
|
53
|
+
"node": ">=v18.13.0",
|
|
54
|
+
"pnpm": ">=7.25.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"@stacksjs/actions": "0.
|
|
58
|
-
"@stacksjs/ai": "0.
|
|
59
|
-
"@stacksjs/alias": "0.
|
|
60
|
-
"@stacksjs/arrays": "0.
|
|
61
|
-
"@stacksjs/auth": "0.
|
|
62
|
-
"@stacksjs/build": "0.
|
|
63
|
-
"@stacksjs/cache": "0.
|
|
64
|
-
"@stacksjs/cli": "0.
|
|
65
|
-
"@stacksjs/cloud": "0.
|
|
66
|
-
"@stacksjs/collections": "0.
|
|
67
|
-
"@stacksjs/config": "0.
|
|
68
|
-
"@stacksjs/docs": "0.
|
|
69
|
-
"@stacksjs/domains": "0.
|
|
70
|
-
"@stacksjs/email": "0.
|
|
71
|
-
"@stacksjs/error-handling": "0.
|
|
72
|
-
"@stacksjs/events": "0.
|
|
73
|
-
"@stacksjs/git": "0.
|
|
74
|
-
"@stacksjs/health": "0.
|
|
75
|
-
"@stacksjs/lint": "0.
|
|
76
|
-
"@stacksjs/logging": "0.
|
|
77
|
-
"@stacksjs/modules": "0.
|
|
78
|
-
"@stacksjs/notifications": "0.
|
|
79
|
-
"@stacksjs/objects": "0.
|
|
80
|
-
"@stacksjs/path": "0.
|
|
81
|
-
"@stacksjs/payments": "0.
|
|
82
|
-
"@stacksjs/realtime": "0.
|
|
83
|
-
"@stacksjs/router": "0.
|
|
84
|
-
"@stacksjs/search-engine": "0.
|
|
85
|
-
"@stacksjs/security": "0.
|
|
86
|
-
"@stacksjs/server": "0.
|
|
87
|
-
"@stacksjs/storage": "0.
|
|
88
|
-
"@stacksjs/strings": "0.
|
|
89
|
-
"@stacksjs/testing": "0.
|
|
90
|
-
"@stacksjs/types": "0.
|
|
91
|
-
"@stacksjs/ui": "0.
|
|
92
|
-
"@stacksjs/utils": "0.
|
|
57
|
+
"@stacksjs/actions": "0.49.1",
|
|
58
|
+
"@stacksjs/ai": "0.49.1",
|
|
59
|
+
"@stacksjs/alias": "0.49.1",
|
|
60
|
+
"@stacksjs/arrays": "0.49.1",
|
|
61
|
+
"@stacksjs/auth": "0.49.1",
|
|
62
|
+
"@stacksjs/build": "0.49.1",
|
|
63
|
+
"@stacksjs/cache": "0.49.1",
|
|
64
|
+
"@stacksjs/cli": "0.49.1",
|
|
65
|
+
"@stacksjs/cloud": "0.49.1",
|
|
66
|
+
"@stacksjs/collections": "0.49.1",
|
|
67
|
+
"@stacksjs/config": "0.49.1",
|
|
68
|
+
"@stacksjs/docs": "0.49.1",
|
|
69
|
+
"@stacksjs/domains": "0.49.1",
|
|
70
|
+
"@stacksjs/email": "0.49.1",
|
|
71
|
+
"@stacksjs/error-handling": "0.49.1",
|
|
72
|
+
"@stacksjs/events": "0.49.1",
|
|
73
|
+
"@stacksjs/git": "0.49.1",
|
|
74
|
+
"@stacksjs/health": "0.49.1",
|
|
75
|
+
"@stacksjs/lint": "0.49.1",
|
|
76
|
+
"@stacksjs/logging": "0.49.1",
|
|
77
|
+
"@stacksjs/modules": "0.49.1",
|
|
78
|
+
"@stacksjs/notifications": "0.49.1",
|
|
79
|
+
"@stacksjs/objects": "0.49.1",
|
|
80
|
+
"@stacksjs/path": "0.49.1",
|
|
81
|
+
"@stacksjs/payments": "0.49.1",
|
|
82
|
+
"@stacksjs/realtime": "0.49.1",
|
|
83
|
+
"@stacksjs/router": "0.49.1",
|
|
84
|
+
"@stacksjs/search-engine": "0.49.1",
|
|
85
|
+
"@stacksjs/security": "0.49.1",
|
|
86
|
+
"@stacksjs/server": "0.49.1",
|
|
87
|
+
"@stacksjs/storage": "0.49.1",
|
|
88
|
+
"@stacksjs/strings": "0.49.1",
|
|
89
|
+
"@stacksjs/testing": "0.49.1",
|
|
90
|
+
"@stacksjs/types": "0.49.1",
|
|
91
|
+
"@stacksjs/ui": "0.49.1",
|
|
92
|
+
"@stacksjs/utils": "0.49.1"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
95
|
"only-allow": "^1.1.1",
|
|
96
96
|
"typescript": "^4.9.4",
|
|
97
|
-
"unbuild": "^1.
|
|
97
|
+
"unbuild": "^1.1.1"
|
|
98
98
|
},
|
|
99
99
|
"config": {
|
|
100
100
|
"commitizen": {
|