snice 1.10.0 → 1.10.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/README.md +1 -1
- package/package.json +36 -2
package/README.md
CHANGED
|
@@ -683,7 +683,7 @@ class ProfilePage extends HTMLElement {
|
|
|
683
683
|
|
|
684
684
|
### Context in Nested Elements
|
|
685
685
|
|
|
686
|
-
Nested elements within pages can also access context
|
|
686
|
+
Nested elements within pages can also access context:
|
|
687
687
|
|
|
688
688
|
```typescript
|
|
689
689
|
// This element can be used inside any page
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snice",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Imperative TypeScript framework for building vanilla web components with decorators, routing, and controllers. No virtual DOM, no build complexity.",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"module": "src/index.ts",
|
|
8
8
|
"types": "src/index.ts",
|
|
@@ -16,6 +16,40 @@
|
|
|
16
16
|
"!src/**/*.test.ts",
|
|
17
17
|
"!src/**/*.spec.ts"
|
|
18
18
|
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"web components",
|
|
21
|
+
"typescript",
|
|
22
|
+
"framework",
|
|
23
|
+
"decorators",
|
|
24
|
+
"custom elements",
|
|
25
|
+
"vanilla js",
|
|
26
|
+
"frontend",
|
|
27
|
+
"spa",
|
|
28
|
+
"routing",
|
|
29
|
+
"imperative",
|
|
30
|
+
"no virtual dom",
|
|
31
|
+
"lightweight",
|
|
32
|
+
"minimal",
|
|
33
|
+
"controllers",
|
|
34
|
+
"mvc",
|
|
35
|
+
"shadow dom",
|
|
36
|
+
"lit alternative",
|
|
37
|
+
"stencil alternative",
|
|
38
|
+
"web standards"
|
|
39
|
+
],
|
|
40
|
+
"author": "hedzer",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"homepage": "https://gitlab.com/Hedzer/snice#readme",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git@gitlab.com:Hedzer/snice.git"
|
|
46
|
+
},
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://gitlab.com/Hedzer/snice/-/issues"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=18.0.0"
|
|
52
|
+
},
|
|
19
53
|
"publishConfig": {
|
|
20
54
|
"access": "public"
|
|
21
55
|
},
|