@tokenade/cli 0.9.7 → 0.9.8

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 +100 -0
  2. package/package.json +10 -9
package/LICENSE ADDED
@@ -0,0 +1,100 @@
1
+ Tokenade Commercial License
2
+ (End User License Agreement)
3
+
4
+ Copyright (c) Tokenade. All rights reserved.
5
+
6
+ Tokenade is proprietary software. This repository contains the public npm
7
+ launcher and installer for the Tokenade CLI, published for transparency and
8
+ inspection: the files here (`bin/tokenade.js`, `install.js`, `platform.js`,
9
+ `package.json`) may be read and audited freely.
10
+
11
+ The Tokenade CLI binary itself is NOT distributed in this repository — it is
12
+ downloaded at install time from the signed release manifest at
13
+ https://downloads.tokenade.net and verified by SHA-256.
14
+
15
+ "Software" below means the Tokenade CLI, the npm package `@tokenade/cli`, the
16
+ binaries published by Tokenade, and any accompanying files.
17
+
18
+ By installing or using the Software, you accept this Agreement. If you do not
19
+ accept it, do not install or use the Software.
20
+
21
+
22
+ 1. LICENCE GRANT
23
+
24
+ Tokenade grants you a non-exclusive, revocable licence to install and use the
25
+ Software, subject to the terms below and to the limits of the plan associated
26
+ with your Tokenade account.
27
+
28
+
29
+ 2. REDISTRIBUTION
30
+
31
+ You may copy and share the Software as published by Tokenade, provided it is
32
+ complete and unmodified. Any copy you share remains subject to this Agreement,
33
+ and the recipient must use it under their own Tokenade account and plan.
34
+
35
+
36
+ 3. RESTRICTIONS
37
+
38
+ You may not:
39
+
40
+ (a) modify, adapt, patch, translate or create derivative works of the
41
+ Software, or of any binary published by Tokenade;
42
+
43
+ (b) reverse engineer, decompile, disassemble, or otherwise attempt to derive
44
+ the source code, algorithms or internal design of the Software, except to
45
+ the extent this restriction cannot be enforced under applicable law;
46
+
47
+ (c) circumvent, disable, tamper with or attempt to defeat any licensing,
48
+ activation, authentication, quota, metering or entitlement mechanism, or
49
+ by any means obtain features, capacity or a plan tier other than the one
50
+ your account is entitled to;
51
+
52
+ (d) remove, obscure or alter any copyright, trademark or licence notice.
53
+
54
+
55
+ 4. ACCOUNTS AND PLANS
56
+
57
+ Use of the Software requires a Tokenade account. Entitlements, quotas and plan
58
+ limits are determined and enforced by Tokenade and may change for future
59
+ releases. Obtaining, or attempting to obtain, entitlements you have not been
60
+ granted is a breach of Section 3(c).
61
+
62
+
63
+ 5. NO WARRANTY
64
+
65
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
66
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
67
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NONINFRINGEMENT. TOKENADE DOES NOT
68
+ WARRANT THAT THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, OR THAT IT WILL
69
+ PRODUCE ANY PARTICULAR RESULT.
70
+
71
+
72
+ 6. LIMITATION OF LIABILITY
73
+
74
+ TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, TOKENADE SHALL NOT BE LIABLE
75
+ FOR ANY CLAIM, DAMAGE OR OTHER LIABILITY — WHETHER DIRECT, INDIRECT, INCIDENTAL,
76
+ SPECIAL, CONSEQUENTIAL OR EXEMPLARY, AND INCLUDING WITHOUT LIMITATION LOSS OF
77
+ DATA, LOSS OF PROFITS, OR BUSINESS INTERRUPTION — ARISING FROM OR IN CONNECTION
78
+ WITH THE SOFTWARE, ITS USE, OR ANY INABILITY TO USE IT.
79
+
80
+ You are solely responsible for the consequences of using the Software. Tokenade
81
+ operates alongside AI coding agents and changes what those agents send and
82
+ receive; you remain responsible for reviewing their output and for any action
83
+ taken on your systems or data as a result.
84
+
85
+
86
+ 7. TERMINATION
87
+
88
+ This licence terminates automatically if you breach any of its terms. On
89
+ termination you must stop using the Software and delete all copies in your
90
+ possession. Sections 5, 6 and 7 survive termination.
91
+
92
+
93
+ 8. GENERAL
94
+
95
+ If any provision of this Agreement is held unenforceable, the remaining
96
+ provisions stay in full force. A failure by Tokenade to enforce any provision
97
+ is not a waiver of it.
98
+
99
+ Licensing questions: https://tokenade.net
100
+ Issues: https://github.com/pi-infected/tokenade-npm/issues
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@tokenade/cli",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "Tokenade — cut your AI coding agent's token bill. Installs the Tokenade CLI (a local, paid token-reduction tool; activate via your browser).",
5
5
  "homepage": "https://tokenade.net",
6
- "license": "UNLICENSED",
6
+ "license": "SEE LICENSE IN LICENSE",
7
7
  "bin": {
8
8
  "tokenade": "bin/tokenade.js"
9
9
  },
@@ -15,19 +15,20 @@
15
15
  "tar": "^7.5.16"
16
16
  },
17
17
  "optionalDependencies": {
18
- "@tokenade/cli-linux-x64": "0.9.7",
19
- "@tokenade/cli-linux-x64-musl": "0.9.7",
20
- "@tokenade/cli-linux-arm64-musl": "0.9.7",
21
- "@tokenade/cli-darwin-arm64": "0.9.7",
22
- "@tokenade/cli-darwin-x64": "0.9.7",
23
- "@tokenade/cli-win32-x64": "0.9.7"
18
+ "@tokenade/cli-linux-x64": "0.9.8",
19
+ "@tokenade/cli-linux-x64-musl": "0.9.8",
20
+ "@tokenade/cli-linux-arm64-musl": "0.9.8",
21
+ "@tokenade/cli-darwin-arm64": "0.9.8",
22
+ "@tokenade/cli-darwin-x64": "0.9.8",
23
+ "@tokenade/cli-win32-x64": "0.9.8"
24
24
  },
25
25
  "files": [
26
26
  "bin/",
27
27
  "platform.js",
28
28
  "install.js",
29
29
  "uninstall.js",
30
- "README.md"
30
+ "README.md",
31
+ "LICENSE"
31
32
  ],
32
33
  "engines": {
33
34
  "node": ">=18"