sealtrail 0.1.0 → 0.1.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/LICENSE +21 -0
- package/README.md +19 -2
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +11 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Zero Loop Labs
|
|
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.
|
package/README.md
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
# sealtrail
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Tamper-proof audit trails for developers. Log, verify, and prove every action with cryptographic hash chains.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/sealtrail)
|
|
6
|
+
[](https://www.npmjs.com/package/sealtrail)
|
|
7
|
+
[](https://opensource.org/licenses/MIT)
|
|
4
8
|
|
|
5
9
|
## Installation
|
|
6
10
|
|
|
7
11
|
```bash
|
|
8
12
|
npm install sealtrail
|
|
13
|
+
# or
|
|
14
|
+
yarn add sealtrail
|
|
15
|
+
# or
|
|
16
|
+
pnpm add sealtrail
|
|
9
17
|
```
|
|
10
18
|
|
|
11
19
|
## Quick Start
|
|
@@ -115,7 +123,16 @@ All error classes: `AuthenticationError` (401), `ForbiddenError` (403), `NotFoun
|
|
|
115
123
|
## Requirements
|
|
116
124
|
|
|
117
125
|
- Node.js 18+ / Bun / Deno (any runtime with `globalThis.fetch`)
|
|
126
|
+
- Zero dependencies
|
|
127
|
+
|
|
128
|
+
## Documentation
|
|
129
|
+
|
|
130
|
+
Full docs and guides at [sealtrail.dev/docs](https://sealtrail.dev/docs)
|
|
131
|
+
|
|
132
|
+
## Contributing
|
|
133
|
+
|
|
134
|
+
Bug reports and pull requests are welcome on [GitHub](https://github.com/zerolooplabs/sealtrail-docs).
|
|
118
135
|
|
|
119
136
|
## License
|
|
120
137
|
|
|
121
|
-
MIT
|
|
138
|
+
[MIT](./LICENSE) - Zero Loop Labs
|
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sealtrail",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Official Node.js SDK for the SealTrail cryptographic audit trail API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -35,14 +35,21 @@
|
|
|
35
35
|
"compliance",
|
|
36
36
|
"cryptographic",
|
|
37
37
|
"hash-chain",
|
|
38
|
-
"sealtrail"
|
|
38
|
+
"sealtrail",
|
|
39
|
+
"tamper-proof",
|
|
40
|
+
"logging",
|
|
41
|
+
"security"
|
|
39
42
|
],
|
|
40
43
|
"license": "MIT",
|
|
44
|
+
"author": "Zero Loop Labs <hello@zerolooplabs.com> (https://zerolooplabs.com)",
|
|
41
45
|
"repository": {
|
|
42
46
|
"type": "git",
|
|
43
|
-
"url": "https://github.com/zerolooplabs/sealtrail"
|
|
47
|
+
"url": "git+https://github.com/zerolooplabs/sealtrail-docs.git"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://sealtrail.dev/docs",
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/zerolooplabs/sealtrail-docs/issues"
|
|
44
52
|
},
|
|
45
|
-
"homepage": "https://sealtrail.dev",
|
|
46
53
|
"devDependencies": {
|
|
47
54
|
"tsup": "^8.4.0",
|
|
48
55
|
"typescript": "^5.7.3",
|