@sugarcube-org/core 0.0.1-alpha.6 → 0.0.1-alpha.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/LICENSE.md +27 -5
- package/README.md +3 -31
- package/dist/index.d.ts +776 -1351
- package/dist/index.js +31 -29
- package/package.json +11 -11
package/LICENSE.md
CHANGED
|
@@ -1,9 +1,31 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Sugarcube Private Alpha License
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Copyright © 2025 Mark Tomlinson. All rights reserved.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
**Version 1.0 – December 2025**
|
|
6
6
|
|
|
7
|
-
This software is provided
|
|
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.
|
|
8
10
|
|
|
9
|
-
|
|
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,35 +1,7 @@
|
|
|
1
1
|
# @sugarcube-org/core
|
|
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
|
-
- Generates utility classes from design tokens
|
|
9
|
-
- Validates token structure and references
|
|
10
|
-
- Provides the foundation for CLI and build tool integrations
|
|
11
|
-
|
|
12
|
-
## Usage
|
|
13
|
-
|
|
14
|
-
This package is primarily used by:
|
|
15
|
-
- `@sugarcube-org/cli` for command-line operations
|
|
16
|
-
- `@sugarcube-org/vite` and `@sugarcube-org/postcss` for build tool integration
|
|
17
|
-
- `sugarcube.sh/validator` for online token validation
|
|
18
|
-
|
|
19
|
-
## API
|
|
20
|
-
|
|
21
|
-
```typescript
|
|
22
|
-
import { loadConfig, cssVariablesPipeline, generateUtilityCSS } from '@sugarcube-org/core'
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## Development
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
pnpm install
|
|
29
|
-
pnpm build
|
|
30
|
-
pnpm test
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
## Stay Tuned
|
|
34
|
-
|
|
35
|
-
Follow our progress on [GitHub](https://github.com/sugarcube-org)
|
|
7
|
+
See [LICENSE.md](./LICENSE.md) for terms.
|