@laplus/server-darwin-arm64 0.1.1-rc.12

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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 T3 Tools Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,52 @@
1
+ # Third-party notices
2
+
3
+ laplus's window shows a user interface it did not write. About 80% of the
4
+ shipped artifact by size is upstream's built web bundle, reused as-is, and the
5
+ licence it is offered under requires its notice to travel with it. This file is
6
+ that notice. It is shown by the installer and installed alongside the
7
+ application, so a copy of laplus always carries it.
8
+
9
+ ## t3code
10
+
11
+ The user interface — everything the window renders — is `apps/web` from t3code,
12
+ built by upstream's own toolchain and embedded unmodified.
13
+
14
+ ```
15
+ MIT License
16
+
17
+ Copyright (c) 2026 T3 Tools Inc.
18
+
19
+ Permission is hereby granted, free of charge, to any person obtaining a copy
20
+ of this software and associated documentation files (the "Software"), to deal
21
+ in the Software without restriction, including without limitation the rights
22
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
23
+ copies of the Software, and to permit persons to whom the Software is
24
+ furnished to do so, subject to the following conditions:
25
+
26
+ The above copyright notice and this permission notice shall be included in all
27
+ copies or substantial portions of the Software.
28
+
29
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
34
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35
+ SOFTWARE.
36
+ ```
37
+
38
+ The web bundle also contains upstream's own vendored dependencies, compiled into
39
+ it by their build. Their notices are upstream's to carry and are not restated
40
+ here.
41
+
42
+ ## Rust dependencies
43
+
44
+ The server is statically linked, so its dependencies are in the artifact too —
45
+ `tauri`, `axum`, `tokio`, `rusqlite` (which compiles SQLite in), `notify`,
46
+ `portable-pty` and their trees. These are overwhelmingly MIT or Apache-2.0, and
47
+ SQLite is public domain.
48
+
49
+ **This section is not yet a complete notice**, and saying so is better than
50
+ implying otherwise: no per-crate licence audit has been run. Ticket 24 records
51
+ it as the open half of that criterion. What is complete is the section above,
52
+ which covers the reused work this project is actually built on.
package/laplus-server ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@laplus/server-darwin-arm64",
3
+ "version": "0.1.1-rc.12",
4
+ "description": "The laplus server binary for darwin arm64.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/hoangvu12/laplus.git"
9
+ },
10
+ "os": [
11
+ "darwin"
12
+ ],
13
+ "cpu": [
14
+ "arm64"
15
+ ],
16
+ "files": [
17
+ "laplus-server",
18
+ "THIRD_PARTY_NOTICES.md"
19
+ ],
20
+ "preferUnplugged": true
21
+ }