@skirbi/tur 0.0.1

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/Changes ADDED
@@ -0,0 +1,5 @@
1
+ Revision history for @skirbi/tur
2
+
3
+ 0.0.1 2026-06-08 01:43:28Z
4
+
5
+ * First release to an unsuspecting world
package/LICENSE ADDED
@@ -0,0 +1,10 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Wesley Schwengle <wesley@opndev.io>
4
+
5
+
6
+ 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:
7
+
8
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9
+
10
+ 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 ADDED
@@ -0,0 +1,51 @@
1
+ <!--
2
+ SPDX-FileCopyrightText: 2026 Wesley Schwengle <wesley@opndev.io>
3
+
4
+ SPDX-License-Identifier: MIT
5
+ -->
6
+
7
+ # Welcome to @skirbi/tur
8
+
9
+ Skirbi integration for Laravel projects
10
+
11
+ ## Development
12
+
13
+ Try to keep functions small and try not to depend on any outside functions. We
14
+ aim to keep the dependency graph as small as possible. The use of `esm` is
15
+ welcomed and writing tests is encouraged.
16
+
17
+ ### jsdoc
18
+
19
+ You can build the documentation by running `npm run jsdoc`.
20
+
21
+ ### eslint
22
+
23
+ The ES Linting profile is flexible and does not try to enforce much. There is
24
+ more than one way to do it ([TIMTOWTDI](https://en.wikipedia.org/wiki/There%27s_more_than_one_way_to_do_it)).
25
+
26
+ Try to stay constistent, but forcing a programming style upon others is bad.
27
+
28
+ ### Code of Conduct
29
+
30
+ Be human.
31
+
32
+ ### Semver
33
+
34
+ This project does not adhere to semver and one should not rely on the version
35
+ x.y.z notation to infer stability or reliability. Read the Changes file to see
36
+ any updates a version may bring. The fact that this module sits currently at
37
+ 0.x.z ranges does not indicate alpha or beta or even unstable associations. It
38
+ is just a number and we started at 0.0.1.
39
+
40
+ In general the following hard guarantee will be given: We will not break your
41
+ code. In case we do happen to cause breakage: we will fix it accordingly.
42
+
43
+ In case we foresee breaking changes we'll add deprecation warnings. Giving you
44
+ time to fix things before a breaking change will be introduced. When a change
45
+ will be introduced is communicated in the Changes file. Security fixes may
46
+ cause breakage at any given time without notice.
47
+
48
+ This package is released by `rzilla`, changes to `package.json` will be
49
+ overridden. In addition to a little bit of promotion, this also means that
50
+ version numbers are autoincremented at release time and bumped in all relevant
51
+ files: Versioning for humans, not machines.
package/lib/index.mjs ADDED
@@ -0,0 +1,5 @@
1
+ // SPDX-FileCopyrightText: 2026 Wesley Schwengle <wesley@opndev.io>
2
+ //
3
+ // SPDX-License-Identifier: MIT
4
+
5
+ const VERSION = "0.0.1";
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "author": {
3
+ "email": "wesley@opndev.io",
4
+ "name": "Wesley Schwengle"
5
+ },
6
+ "dependencies": {
7
+ "@skirbi/dibuho": ">=0.0.1",
8
+ "@skirbi/pinta": ">=0.0.17",
9
+ "@skirbi/semtic": ">=0.0.20",
10
+ "@skirbi/sugar": ">=0.1.6"
11
+ },
12
+ "description": "Skirbi meta package",
13
+ "devDependencies": {},
14
+ "exports": {
15
+ ".": "./lib/index.mjs"
16
+ },
17
+ "keywords": [
18
+ "semantic HTML",
19
+ "web components",
20
+ "custom elements"
21
+ ],
22
+ "license": "MIT",
23
+ "name": "@skirbi/tur",
24
+ "overrides": {
25
+ "@skirbi/sugar": ">=0.1.6"
26
+ },
27
+ "private": false,
28
+ "scripts": {
29
+ "build": "rzil build",
30
+ "pkg": "rzil pkg",
31
+ "release": "rzil release",
32
+ "test": "echo Currently no tests"
33
+ },
34
+ "sideEffects": false,
35
+ "type": "module",
36
+ "version": "0.0.1"
37
+ }