bukku-client 1.0.1 → 1.0.2
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/INTENT.md +26 -0
- package/package.json +3 -2
package/INTENT.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Intent
|
|
2
|
+
|
|
3
|
+
This project is released with the intention of serving the **public good**, enabling both open and commercial ecosystems to benefit from and contribute to this work.
|
|
4
|
+
|
|
5
|
+
We dedicate this library as a **shared public resource** — a foundation others may build on, whether in open or closed-source projects, as long as the freedoms of this core are respected and preserved.
|
|
6
|
+
|
|
7
|
+
## Core Principles
|
|
8
|
+
|
|
9
|
+
- **Perpetual Access & Freedom**
|
|
10
|
+
This software library is licensed under the [GNU Lesser General Public License v3.0 (LGPLv3)](./LICENSE), ensuring it remains freely accessible, usable, and modifiable by anyone.
|
|
11
|
+
|
|
12
|
+
- **Freedom to Use in Any Project**
|
|
13
|
+
This project may be used in **both open source and proprietary software**, provided that modifications to this library itself remain open and shared under the same license.
|
|
14
|
+
|
|
15
|
+
- **Encouraging Ethical Use**
|
|
16
|
+
While we cannot and do not legally restrict how this library is used, we encourage its application in ways that promote equity, creativity, and collective benefit — and discourage harmful, exploitative, or unjust uses.
|
|
17
|
+
|
|
18
|
+
- **Attribution and Integrity**
|
|
19
|
+
Credit should be given to the original contributors. Modifications should be clearly documented to maintain technical and ethical transparency.
|
|
20
|
+
|
|
21
|
+
- **Community Stewardship**
|
|
22
|
+
This project is a contribution to the wider commons. We welcome all who share its values to contribute, improve, and help sustain it.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
> This document expresses the **spirit and ethical framing** of the project. It is not legally binding, but it clarifies the values guiding its creation and ongoing development.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bukku-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "TypeScript client for the Bukku REST API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"files": [
|
|
37
37
|
"dist",
|
|
38
38
|
"LICENSE",
|
|
39
|
-
"README.md"
|
|
39
|
+
"README.md",
|
|
40
|
+
"INTENT.md"
|
|
40
41
|
],
|
|
41
42
|
"engines": {
|
|
42
43
|
"node": ">=16"
|