make-sugarcube 0.0.12 → 0.0.14-alpha.0
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/CHANGELOG.md +9 -0
- package/LICENSE.md +31 -0
- package/README.md +3 -5
- package/index.js +10 -4
- package/package.json +3 -3
package/CHANGELOG.md
ADDED
package/LICENSE.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Sugarcube Private Alpha License
|
|
2
|
+
|
|
3
|
+
Copyright © 2025 Mark Tomlinson. All rights reserved.
|
|
4
|
+
|
|
5
|
+
**Version 1.0 – December 2025**
|
|
6
|
+
|
|
7
|
+
This software is provided under a temporary, non-exclusive, non-transferable
|
|
8
|
+
license for private evaluation and internal use as part of the Sugarcube
|
|
9
|
+
Private Alpha Program.
|
|
10
|
+
|
|
11
|
+
## Permitted
|
|
12
|
+
|
|
13
|
+
- Use in internal and client projects for the purpose of evaluating Sugarcube
|
|
14
|
+
- Reporting bugs, performance issues, and usability feedback
|
|
15
|
+
|
|
16
|
+
## Not Permitted
|
|
17
|
+
|
|
18
|
+
- Redistribution of the software or any derivative works
|
|
19
|
+
- Public hosting of the source code
|
|
20
|
+
- Sublicensing, resale, or commercial distribution of Sugarcube itself
|
|
21
|
+
- Reverse engineering for the purpose of creating a competing product
|
|
22
|
+
|
|
23
|
+
## Disclaimer
|
|
24
|
+
|
|
25
|
+
This software is provided "as is", without warranty of any kind, express or
|
|
26
|
+
implied. The author assumes no liability for damages arising from its use.
|
|
27
|
+
|
|
28
|
+
## Future Licensing
|
|
29
|
+
|
|
30
|
+
This license will be replaced by an open-source license at public beta or
|
|
31
|
+
general availability.
|
package/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# make-sugarcube
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> ⚠️ **Private Alpha** — This package is under active development and not yet ready for public use.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## License
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Follow our progress on [GitHub](https://github.com/sugarcube-org)
|
|
7
|
+
See [LICENSE.md](./LICENSE.md) for terms.
|
package/index.js
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
|
|
3
|
+
console.log(`
|
|
4
|
+
╔════════════════════════════════════════════════════════════════════════════╗
|
|
5
|
+
║ WELCOME TO SUGARCUBE (THE TOOLKIT FOR SERIOUSLY SWEET FRONTENDS) ║
|
|
6
|
+
║ ║
|
|
7
|
+
║ Package coming soon! ║
|
|
8
|
+
║ ║
|
|
9
|
+
║ For updates, follow: @marktomlinson.bsky.social ║
|
|
10
|
+
╚════════════════════════════════════════════════════════════════════════════╝
|
|
11
|
+
`);
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "make-sugarcube",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14-alpha.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Public CLI entrypoint for sugarcube",
|
|
6
6
|
"bin": {
|
|
7
7
|
"make-sugarcube": "./index.js"
|
|
8
8
|
},
|
|
9
9
|
"author": "Mark Tomlinson",
|
|
10
|
-
"license": "
|
|
10
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "https://github.com/sugarcube-org/sugarcube"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"type": "module",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@sugarcube-org/cli": "
|
|
25
|
+
"@sugarcube-org/cli": "0.0.0-alpha.17"
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
28
|
"node": ">=18.0.0"
|