webcoreui 0.0.2

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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Frontendland
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 ADDED
@@ -0,0 +1,47 @@
1
+ # Astro Starter Kit: Minimal
2
+
3
+ ```sh
4
+ npm create astro@latest -- --template minimal
5
+ ```
6
+
7
+ [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal)
8
+ [![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal)
9
+ [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json)
10
+
11
+ > 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
12
+
13
+ ## 🚀 Project Structure
14
+
15
+ Inside of your Astro project, you'll see the following folders and files:
16
+
17
+ ```text
18
+ /
19
+ ├── public/
20
+ ├── src/
21
+ │ └── pages/
22
+ │ └── index.astro
23
+ └── package.json
24
+ ```
25
+
26
+ Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
27
+
28
+ There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
29
+
30
+ Any static assets, like images, can be placed in the `public/` directory.
31
+
32
+ ## 🧞 Commands
33
+
34
+ All commands are run from the root of the project, from a terminal:
35
+
36
+ | Command | Action |
37
+ | :------------------------ | :----------------------------------------------- |
38
+ | `npm install` | Installs dependencies |
39
+ | `npm run dev` | Starts local dev server at `localhost:4321` |
40
+ | `npm run build` | Build your production site to `./dist/` |
41
+ | `npm run preview` | Preview your build locally, before deploying |
42
+ | `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
43
+ | `npm run astro -- --help` | Get help using the Astro CLI |
44
+
45
+ ## 👀 Want to learn more?
46
+
47
+ Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
package/dist/env.d.ts ADDED
@@ -0,0 +1 @@
1
+ /// <reference types="astro/client" />
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "webcoreui",
3
+ "type": "module",
4
+ "version": "0.0.2",
5
+ "scripts": {
6
+ "dev": "astro dev",
7
+ "build": "astro check && astro build",
8
+ "build:package": "node scripts/build.js",
9
+ "test": "echo \"Error: no test specified\""
10
+ },
11
+ "dependencies": {
12
+ "@astrojs/check": "0.7.0",
13
+ "@astrojs/svelte": "5.5.0",
14
+ "astro": "4.10.2",
15
+ "sass": "1.77.5",
16
+ "svelte": "4.2.18",
17
+ "typescript": "5.4.5"
18
+ },
19
+ "exports": {
20
+ "./astro": "./astro.js",
21
+ "./styles": "./scss/index.scss",
22
+ "./config": "./scss/config.scss"
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ]
27
+ }