pleumrouter 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/LICENSE +133 -0
  2. package/package.json +4 -3
package/LICENSE ADDED
@@ -0,0 +1,133 @@
1
+ PolyForm Noncommercial License 1.0.0
2
+
3
+ <https://polyformproject.org/licenses/noncommercial/1.0.0>
4
+
5
+ Acceptance
6
+
7
+ In order to get any license under these terms, you must agree
8
+ to them as both strict obligations and conditions to all
9
+ your licenses.
10
+
11
+ Copyright License
12
+
13
+ The licensor grants you a copyright license for the
14
+ software to do everything you might do with the software
15
+ that would otherwise infringe the licensor's copyright
16
+ in it for any permitted purpose. However, you may only
17
+ distribute the software according to Distribution License
18
+ and make changes or new works based on the software
19
+ according to Changes and New Works License.
20
+
21
+ Distribution License
22
+
23
+ The licensor grants you an additional copyright license
24
+ to distribute copies of the software. Your license to
25
+ distribute covers distributing the software with changes
26
+ and new works permitted by Changes and New Works License.
27
+
28
+ Notices
29
+
30
+ You must ensure that anyone who gets a copy of any part of
31
+ the software from you also gets a copy of these terms or the
32
+ URL for them above, as well as copies of any plain-text lines
33
+ beginning with Required Notice: that the licensor provided
34
+ with the software. For example:
35
+
36
+ Required Notice: Copyright 2026 Lee Wonyoung (https://github.com/gachon-star-want/PleumRouter)
37
+
38
+ Changes and New Works License
39
+
40
+ The licensor grants you an additional copyright license to
41
+ make changes and new works based on the software for any
42
+ permitted purpose.
43
+
44
+ Patent License
45
+
46
+ The licensor grants you a patent license for the software
47
+ that covers patent claims the licensor can license, or will
48
+ be able to license, that you would infringe by using the
49
+ software.
50
+
51
+ Noncommercial Purposes
52
+
53
+ Any noncommercial purpose is a permitted purpose.
54
+
55
+ Personal Uses
56
+
57
+ Personal use for research, experiment, and testing for
58
+ the benefit of public knowledge, personal study, private
59
+ entertainment, hobby projects, amateur pursuits, or
60
+ religious observance, without any anticipated commercial
61
+ application, is use for a permitted purpose.
62
+
63
+ Noncommercial Organizations
64
+
65
+ Use by any charitable organization, educational institution,
66
+ public research organization, public safety or health
67
+ organization, environmental protection organization,
68
+ or government institution is use for a permitted purpose
69
+ regardless of the source of funding or obligations resulting
70
+ from the funding.
71
+
72
+ Fair Use
73
+
74
+ You may have "fair use" rights for the software under the
75
+ law. These terms do not limit them.
76
+
77
+ No Other Rights
78
+
79
+ These terms do not allow you to sublicense or transfer any of
80
+ your licenses to anyone else, or prevent the licensor from
81
+ granting licenses to anyone else. These terms do not imply
82
+ any other licenses.
83
+
84
+ Patent Defense
85
+
86
+ If you make any written claim that the software infringes or
87
+ contributes to infringement of any patent, your patent license
88
+ for the software granted under these terms ends immediately. If
89
+ your employer makes such a claim, your patent license ends
90
+ immediately for work on behalf of your employer.
91
+
92
+ Violations
93
+
94
+ The first time you are notified in writing that you have
95
+ violated any of these terms, or done anything with the software
96
+ not covered by your licenses, your licenses can nonetheless
97
+ continue if you come into compliance within 32 days after
98
+ receiving notice. Otherwise, all your licenses end permanently.
99
+
100
+ No Liability
101
+
102
+ As far as the law allows, the software comes as is, without
103
+ any warranty or condition, and the licensor will not be liable
104
+ to you for any damages arising out of these terms or the use
105
+ or nature of the software, under any kind of legal claim.
106
+
107
+ Definitions
108
+
109
+ The licensor is the individual or entity offering these
110
+ terms, and the software is the software the licensor makes
111
+ available under these terms.
112
+
113
+ You refers to the individual or entity agreeing to these
114
+ terms.
115
+
116
+ Your company is any legal entity, sole proprietorship,
117
+ or other kind of organization that you work for, plus all
118
+ organizations that have control over, are under the control of,
119
+ or are under common control with that organization. Control
120
+ means ownership of substantially all the assets of an entity,
121
+ or the power to direct its management and legal affairs.
122
+
123
+ Your licenses are all the licenses granted to you for the
124
+ software under these terms.
125
+
126
+ Use means anything you do with the software requiring one
127
+ of your licenses.
128
+
129
+ Trademark
130
+
131
+ The PolyForm Noncommercial License 1.0.0 does not grant
132
+ any rights to use the licensor's trademarks, trade names,
133
+ or logos.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pleumrouter",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Official PleumRouter terminal CLI — launch any coding agent against PleumRouter.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,12 +12,13 @@
12
12
  "files": [
13
13
  "bin",
14
14
  "src",
15
- "README.md"
15
+ "README.md",
16
+ "LICENSE"
16
17
  ],
17
18
  "scripts": {
18
19
  "test": "node --test"
19
20
  },
20
- "license": "MIT",
21
+ "license": "PolyForm-Noncommercial-1.0.0",
21
22
  "publishConfig": {
22
23
  "access": "public"
23
24
  },