svelte-copyright 2.0.0-rc.0 → 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.
- package/README.md +5 -3
- package/package.json +31 -17
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%
|
|
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
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "himynameisdave",
|
|
7
7
|
"email": "d@velunny.com",
|
|
@@ -48,28 +48,42 @@
|
|
|
48
48
|
"svelte": "^4.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@playwright/test": "^1.37.
|
|
51
|
+
"@playwright/test": "^1.37.1",
|
|
52
52
|
"@sveltejs/adapter-auto": "^2.0.0",
|
|
53
|
-
"@sveltejs/kit": "^1.
|
|
54
|
-
"@sveltejs/package": "^2.2.
|
|
55
|
-
"
|
|
56
|
-
"@typescript-eslint/parser": "^6.3.0",
|
|
57
|
-
"eslint": "^8.47.0",
|
|
58
|
-
"eslint-config-himynameisdave": "^7.1.0",
|
|
59
|
-
"eslint-plugin-promise": "^6.1.1",
|
|
60
|
-
"eslint-plugin-svelte": "^2.32.4",
|
|
61
|
-
"eslint-plugin-unicorn": "^48.0.1",
|
|
53
|
+
"@sveltejs/kit": "^1.24.0",
|
|
54
|
+
"@sveltejs/package": "^2.2.2",
|
|
55
|
+
"eslint-config-himynameisdave": "^8.1.0",
|
|
62
56
|
"husky": "^8.0.3",
|
|
63
57
|
"less": "^4.2.0",
|
|
64
|
-
"lint-staged": "^14.0.
|
|
58
|
+
"lint-staged": "^14.0.1",
|
|
65
59
|
"np": "^8.0.4",
|
|
66
|
-
"publint": "^0.2.
|
|
60
|
+
"publint": "^0.2.2",
|
|
67
61
|
"svelte": "^4.2.0",
|
|
68
|
-
"svelte-check": "^3.5.
|
|
69
|
-
"tslib": "^2.6.
|
|
70
|
-
"typescript": "^5.
|
|
62
|
+
"svelte-check": "^3.5.1",
|
|
63
|
+
"tslib": "^2.6.2",
|
|
64
|
+
"typescript": "^5.2.2",
|
|
71
65
|
"vite": "^4.4.9",
|
|
72
|
-
"vitest": "^0.34.
|
|
66
|
+
"vitest": "^0.34.3"
|
|
73
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
|
+
],
|
|
74
88
|
"private": false
|
|
75
89
|
}
|