svelte-copyright 2.0.0-rc.1 → 2.0.0

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 +5 -3
  2. package/package.json +21 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  <h1>svelte-copyright</h1>
3
3
  <p style="font-style: italic;">© A Svelte component to format and display a copyright notice.</p>
4
4
  <div>
5
- <a href='https://github.com/himynameisdave/svelte-copyright/actions?query=workflow%3Atest+branch%3Amaster'>
5
+ <a href='https://github.com/himynameisdave/svelte-copyright/actions?query=workflow%3Atest+branch%3Amain'>
6
6
  <img src="https://github.com/himynameisdave/svelte-copyright/workflows/test/badge.svg" alt="GitHub Actions - Test Workflow Badge" />
7
7
  </a>
8
8
  <a href="https://packagephobia.now.sh/result?p=svelte-copyright">
@@ -25,11 +25,13 @@ A [Svelte](https://svelte.dev/) component to format and display a copyright noti
25
25
  This package is available on NPM, and you can install it with `npm` or `yarn`:
26
26
 
27
27
  ```
28
- npm install svelte-copyright
28
+ npm install -D svelte-copyright
29
29
 
30
- yarn add svelte-copyright
30
+ yarn add -D svelte-copyright
31
31
  ```
32
32
 
33
+ Note that it only needs to be installed as a devDependency, like `svelte` itself.
34
+
33
35
  ### Usage
34
36
 
35
37
  Import the `Copyright` component and use it in your Svelte project.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "svelte-copyright",
3
3
  "description": "A Svelte component to format and display a copyright notice.",
4
- "version": "2.0.0-rc.1",
4
+ "version": "2.0.0",
5
5
  "author": {
6
6
  "name": "himynameisdave",
7
7
  "email": "d@velunny.com",
@@ -65,5 +65,25 @@
65
65
  "vite": "^4.4.9",
66
66
  "vitest": "^0.34.3"
67
67
  },
68
+ "keywords": [
69
+ "svelte",
70
+ "component",
71
+ "copyright",
72
+ "notice",
73
+ "footer",
74
+ "license",
75
+ "attribution",
76
+ "website",
77
+ "web-design",
78
+ "frontend",
79
+ "legal",
80
+ "year",
81
+ "svelte-components",
82
+ "license-display",
83
+ "attribution-tool",
84
+ "web-component",
85
+ "copy-protection",
86
+ "legal-footer"
87
+ ],
68
88
  "private": false
69
89
  }