Skip to content

Commit bc38223

Browse files
author
Sebastian Schürmann
committed
docs(root): license
1 parent 3d1dc1e commit bc38223

File tree

5 files changed

+45
-7
lines changed

5 files changed

+45
-7
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023-2024 Sebastian Schürmann
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package-lock.json

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "vanillin-monorepo",
33
"private": true,
4+
"license": "MIT",
45
"workspaces": [
56
"packages/*"
67
],

packages/component-my-circle/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
{
22
"name": "@vanillin/component-my-circle",
33
"version": "0.1.0",
4+
"description": "Example web component built with Vanillin.js",
45
"main": "dist/index.js",
56
"types": "dist/index.d.ts",
7+
"type": "module",
68
"scripts": {
79
"test": "node --import tsx --test ./test/component.test.ts",
810
"build": "tsc"
911
},
12+
"keywords": [
13+
"web-components",
14+
"vanillin",
15+
"example"
16+
],
17+
"author": "Sebastian Schürmann",
18+
"license": "MIT",
1019
"dependencies": {
1120
"vanillin": "file:../vanillin"
1221
},

packages/vanillin/package.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vanillin",
33
"version": "0.1.0",
4-
"description": "",
4+
"description": "A toolchain for developing web components using vanilla JavaScript",
55
"main": "dist/index.js",
66
"type": "module",
77
"exports": {
@@ -11,15 +11,20 @@
1111
"build": "tsc",
1212
"test": "node --import tsx --test ./test/*test.ts"
1313
},
14-
"keywords": [],
15-
"author": "",
16-
"license": "ISC",
14+
"keywords": [
15+
"web-components",
16+
"vanilla-js",
17+
"typescript",
18+
"testing"
19+
],
20+
"author": "Sebastian Schürmann",
21+
"license": "MIT",
1722
"devDependencies": {
1823
"@types/jsdom": "^21.1.7",
1924
"@types/node": "^20.10.5"
2025
},
2126
"dependencies": {
22-
"jsdom": "^25.0.1",
27+
"jsdom": "^23.0.1",
2328
"memfs": "^4.6.0",
2429
"typescript": "^5.3.3"
2530
}

0 commit comments

Comments
 (0)