csskit-win32-arm64 0.0.1-security → 0.0.5
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 +21 -0
- package/README.md +14 -5
- package/package.json +18 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Keith Cirkel
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,11 +1,20 @@
|
|
|
1
|
-
#
|
|
1
|
+
# csskit
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
You may adopt this package by contacting Support at https://www.npmjs.com/support and requesting the name.
|
|
3
|
+
csskit is a suite of high performance tools for CSS, written in Rust.
|
|
7
4
|
|
|
5
|
+
## Goals
|
|
8
6
|
|
|
7
|
+
The goal of this project is to provide a high quality set of tools for writing native CSS and shipping said CSS into
|
|
8
|
+
production the best way possible. This means:
|
|
9
9
|
|
|
10
|
+
- Preventing mistakes at author time (parsing & linting).
|
|
11
|
+
- Advising best practices and highlighting pitfalls (linting).
|
|
12
|
+
- Allow consistent homogeneous code to be written (formatting).
|
|
13
|
+
- Allowing the authorship of modern CSS that is downsampled for browser support ("transpiling").
|
|
14
|
+
- Provides integration with IDEs (LSP).
|
|
15
|
+
- Producing the smallest available artefacts (minification & bundling).
|
|
16
|
+
- Provide a way for authors to migrate from alternative authoring formats (such as SCSS).
|
|
10
17
|
|
|
18
|
+
## Usage
|
|
11
19
|
|
|
20
|
+
- Visit the [Getting started guide](https://csskit.rs/docs/getting-started/) for more detail.
|
package/package.json
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
"name": "csskit-win32-arm64",
|
|
3
|
+
"version": "0.0.5",
|
|
4
|
+
"description": "Refreshing CSS - Windows arm64 binary",
|
|
5
|
+
"keywords": ["css", "csskit"],
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Keith Cirkel (https://keithcirkel.co.uk)",
|
|
8
|
+
"repository": "https://github.com/csskit/csskit",
|
|
9
|
+
"os": ["win32"],
|
|
10
|
+
"cpu": ["arm64"],
|
|
11
|
+
"bin": {
|
|
12
|
+
"csskit": "./bin/csskit.exe"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"./bin"
|
|
16
|
+
],
|
|
17
|
+
"funding": {
|
|
18
|
+
"url": "https://github.com/sponsors/keithamus"
|
|
19
|
+
}
|
|
6
20
|
}
|