kritzel-react 0.0.21 → 0.0.37

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.
Files changed (2) hide show
  1. package/README.md +22 -11
  2. package/package.json +2 -7
package/README.md CHANGED
@@ -1,11 +1,22 @@
1
- # `react`
2
-
3
- > TODO: description
4
-
5
- ## Usage
6
-
7
- ```
8
- const react = require('react');
9
-
10
- // TODO: DEMONSTRATE API
11
- ```
1
+ # Setup
2
+
3
+ Install the kritzel-react package.
4
+ ```
5
+ npm i kritzel-react
6
+ ```
7
+
8
+ Add MyList to your imports to use it in your component template.
9
+ ```typescript
10
+ import { MyList } from 'kritzel-react'
11
+
12
+ function MyComponent() {
13
+
14
+ return (
15
+ <>
16
+ <MyList></MyList>
17
+ </>
18
+ )
19
+ }
20
+
21
+ export default MyComponent
22
+ ```
package/package.json CHANGED
@@ -1,8 +1,6 @@
1
1
  {
2
2
  "name": "kritzel-react",
3
- "version": "0.0.21",
4
- "description": "> TODO: description",
5
- "author": "kasual1 <seifertluk11@gmail.com>",
3
+ "version": "0.0.37",
6
4
  "homepage": "https://gitlab.com/kasual1/kritzel#readme",
7
5
  "license": "ISC",
8
6
  "main": "dist/index.js",
@@ -22,7 +20,7 @@
22
20
  "@stencil/react-output-target": "^0.7.4"
23
21
  },
24
22
  "peerDependencies": {
25
- "kritzel-stencil": "^0.0.16"
23
+ "kritzel-stencil": "^0.0.37"
26
24
  },
27
25
  "repository": {
28
26
  "type": "git",
@@ -36,9 +34,6 @@
36
34
  "bump": "npm version patch",
37
35
  "release": "npm publish"
38
36
  },
39
- "bugs": {
40
- "url": "https://gitlab.com/kasual1/kritzel/issues"
41
- },
42
37
  "devDependencies": {
43
38
  "@types/react": "^18.3.12",
44
39
  "react": "^18.3.1",