Skip to content

Commit 4ec2849

Browse files
committed
Add correct files to build
1 parent a59d425 commit 4ec2849

3 files changed

Lines changed: 38 additions & 3 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ yarn-error.log*
77
pnpm-debug.log*
88
lerna-debug.log*
99

10+
11+
*.tgz
12+
1013
node_modules
1114
build
1215
dist

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) 2026 by Stefan Nieke
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.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@
1616
"require": "./build/bb.js"
1717
}
1818
},
19+
"publishConfig": {
20+
"access": "public",
21+
"provenance": true
22+
},
23+
"files": [
24+
"build",
25+
"README.md",
26+
"LICENSE"
27+
],
1928
"scripts": {
2029
"dev": "vite",
2130
"build": "tsc && vite build",
@@ -24,8 +33,9 @@
2433
"storybook": "storybook dev -p 6006",
2534
"build-storybook": "storybook build"
2635
},
27-
"dependencies": {
28-
"lit": "^3.3.1"
36+
"dependencies": {},
37+
"peerDependencies": {
38+
"lit": "^3.0.0"
2939
},
3040
"devDependencies": {
3141
"@storybook/addon-a11y": "^10.2.0",
@@ -41,7 +51,8 @@
4151
"storybook": "^10.2.0",
4252
"typescript": "~5.9.3",
4353
"vite": "^7.2.4",
44-
"vitest": "^4.0.17"
54+
"vitest": "^4.0.17",
55+
"lit": "^3.3.1"
4556
},
4657
"keywords": [
4758
"canvas",

0 commit comments

Comments
 (0)