@sugarcube-org/core 0.0.1-alpha.9 → 0.1.0-alpha.18
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 +5 -27
- package/README.md +9 -1
- package/dist/index.d.ts +449 -1162
- package/dist/index.js +19 -22
- package/package.json +4 -5
package/LICENSE.md
CHANGED
|
@@ -1,31 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright
|
|
3
|
+
Copyright (c) Mark Tomlinson
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
license for private evaluation and internal use as part of the Sugarcube
|
|
9
|
-
Private Alpha Program.
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
10
8
|
|
|
11
|
-
|
|
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.
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# @sugarcube-org/core
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
<p>
|
|
4
|
+
<a href="https://www.npmjs.com/package/@sugarcube-org/core"><img src="https://img.shields.io/npm/v/@sugarcube-org/core.svg" alt="Latest Release"></a>
|
|
5
|
+
<a href="https://www.npmjs.com/package/@sugarcube-org/core"><img src="https://img.shields.io/npm/dt/@sugarcube-org/core.svg" alt="Total Downloads"></a>
|
|
6
|
+
<a href="https://github.com/sugarcube-org/sugarcube/blob/main/LICENSE.md"><img src="https://img.shields.io/badge/license-see%20LICENSE-blue" alt="License"></a>
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
Core token processing and CSS generation for [sugarcube](https://sugarcube.sh).
|
|
10
|
+
|
|
11
|
+
This is an internal package. You probably want [`make-sugarcube`](https://www.npmjs.com/package/make-sugarcube) or [`@sugarcube-org/vite`](https://www.npmjs.com/package/@sugarcube-org/vite) instead.
|
|
4
12
|
|
|
5
13
|
## License
|
|
6
14
|
|