@sanctifyprojects/timeislinear 0.1.6

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 (3) hide show
  1. package/LICENSE +46 -0
  2. package/README.md +17 -0
  3. package/package.json +26 -0
package/LICENSE ADDED
@@ -0,0 +1,46 @@
1
+ TIMEISLINEAR NON-COMMERCIAL NO-DERIVATIVES LICENSE (CUSTOM)
2
+
3
+ Copyright (c) 2026 Nathaniel Britten
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to use the
7
+ Software and to copy and redistribute exact, unmodified copies of the Software,
8
+ subject to the following conditions:
9
+
10
+ 1. Attribution / Notice
11
+ This copyright notice and this license text must be included in all copies
12
+ or substantial portions of the Software.
13
+
14
+ 2. No Derivatives (No Modifications)
15
+ You may not modify, adapt, translate, reverse engineer, decompile, disassemble,
16
+ or create derivative works based on the Software, in whole or in part.
17
+
18
+ 3. Non-Commercial Use Only
19
+ You may not use the Software for Commercial Purposes. "Commercial Purposes"
20
+ means any use intended for, or directed toward, commercial advantage or
21
+ monetary compensation, including (without limitation):
22
+ - selling, licensing, sublicensing, renting, leasing, or monetizing the Software;
23
+ - offering the Software (or access to it) as part of a paid product or service;
24
+ - using the Software to provide paid services to third parties.
25
+
26
+ 4. No Sale / No Paid Redistribution
27
+ You may not sell the Software or charge a fee for redistributing it, except
28
+ that you may charge reasonable, pass-through, at-cost fees solely to cover
29
+ the actual cost of media, packaging, and delivery/transfer.
30
+
31
+ 5. No Removal of Restrictions
32
+ You may not impose any additional restrictions on recipients that would
33
+ conflict with this license.
34
+
35
+ 6. Trademarks
36
+ This license does not grant permission to use any trade names, trademarks,
37
+ service marks, or product names of the copyright holder, except as required
38
+ for reasonable and customary use in describing the origin of the Software.
39
+
40
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
41
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
42
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
43
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
44
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
45
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
46
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ ## `@sanctifyprojects/timeislinear`
2
+
3
+ Meta package for the `timeislinear` CLI.
4
+
5
+ This package installs a small Node wrapper which selects the correct prebuilt binary package for your platform via `optionalDependencies`.
6
+
7
+ ### Install
8
+
9
+ ```bash
10
+ npm i -g @sanctifyprojects/timeislinear
11
+ ```
12
+
13
+ ### Run
14
+
15
+ ```bash
16
+ timeislinear
17
+ ```
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@sanctifyprojects/timeislinear",
3
+ "version": "0.1.6",
4
+ "private": false,
5
+ "description": "Local-first terminal time tracker (meta package).",
6
+ "type": "commonjs",
7
+ "bin": {
8
+ "timeislinear": "bin/timeislinear.js"
9
+ },
10
+ "engines": {
11
+ "node": ">=18"
12
+ },
13
+ "optionalDependencies": {
14
+ "@sanctifyprojects/timeislinear-darwin-arm64": "0.1.6",
15
+ "@sanctifyprojects/timeislinear-darwin-x64": "0.1.6",
16
+ "@sanctifyprojects/timeislinear-linux-arm64": "0.1.6",
17
+ "@sanctifyprojects/timeislinear-linux-x64": "0.1.6",
18
+ "@sanctifyprojects/timeislinear-win32-arm64": "0.1.6",
19
+ "@sanctifyprojects/timeislinear-win32-x64": "0.1.6"
20
+ },
21
+ "files": [
22
+ "bin/**",
23
+ "README.md",
24
+ "LICENSE"
25
+ ]
26
+ }