@boltapp/bolt-app-db 0.0.2 → 0.0.4
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/LICENSE.md +32 -0
- package/README.md +5 -1
- package/package.json +4 -2
package/LICENSE.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Copyright 2026 Boltapp
|
|
2
|
+
|
|
3
|
+
Boltapp Public Use License v1.0
|
|
4
|
+
|
|
5
|
+
Permission is granted, free of charge, to any person or entity obtaining a copy
|
|
6
|
+
of this package to use the package in unmodified form for internal or external
|
|
7
|
+
applications.
|
|
8
|
+
|
|
9
|
+
The following rights are explicitly prohibited without prior written permission
|
|
10
|
+
from Boltapp:
|
|
11
|
+
|
|
12
|
+
1. Modifying, adapting, translating, reverse engineering, or creating derivative
|
|
13
|
+
works of the package.
|
|
14
|
+
2. Redistributing, sublicensing, relicensing, selling, reselling, renting,
|
|
15
|
+
leasing, hosting, or otherwise making the package available to third parties
|
|
16
|
+
(whether in source, object, or bundled form), except as an inseparable part
|
|
17
|
+
of your own application that does not expose the package itself for reuse.
|
|
18
|
+
3. Removing or altering copyright, license, or attribution notices.
|
|
19
|
+
4. Using Boltapp names, logos, or trademarks without separate trademark
|
|
20
|
+
permission.
|
|
21
|
+
|
|
22
|
+
This license does not grant any ownership rights. All rights not expressly
|
|
23
|
+
granted are reserved by Boltapp.
|
|
24
|
+
|
|
25
|
+
This package is provided "AS IS", without warranty of any kind, express or
|
|
26
|
+
implied, including but not limited to warranties of merchantability, fitness for
|
|
27
|
+
a particular purpose, and noninfringement. In no event shall Boltapp be liable
|
|
28
|
+
for any claim, damages, or other liability arising from or in connection with
|
|
29
|
+
the package or its use.
|
|
30
|
+
|
|
31
|
+
If you breach these terms, your rights under this license terminate
|
|
32
|
+
automatically.
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boltapp/bolt-app-db",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
8
|
"files": [
|
|
9
|
-
"dist"
|
|
9
|
+
"dist",
|
|
10
|
+
"LICENSE.md"
|
|
10
11
|
],
|
|
11
12
|
"scripts": {
|
|
12
13
|
"dev": "echo 'Add dev script here'",
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
"publishConfig": {
|
|
22
23
|
"access": "public"
|
|
23
24
|
},
|
|
25
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
24
26
|
"exports": {
|
|
25
27
|
".": {
|
|
26
28
|
"types": "./dist/index.d.ts",
|