@standardagents/sip 0.10.1-dev.616ec2e → 0.10.1-dev.cea2b66

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.txt ADDED
@@ -0,0 +1,48 @@
1
+ PROPRIETARY SOFTWARE LICENSE
2
+
3
+ Copyright (c) 2024-2025 FormKit Inc. All Rights Reserved.
4
+
5
+ UNLICENSED - DO NOT USE
6
+
7
+ This software and associated documentation files (the "Software") are the sole
8
+ and exclusive property of FormKit Inc. ("FormKit").
9
+
10
+ USE RESTRICTIONS
11
+
12
+ The Software is UNLICENSED and proprietary. NO PERMISSION is granted to use,
13
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
14
+ the Software, or to permit persons to whom the Software is furnished to do so,
15
+ under any circumstances, without prior written authorization from FormKit Inc.
16
+
17
+ UNAUTHORIZED USE PROHIBITED
18
+
19
+ Any use of this Software without a valid, written license agreement signed by
20
+ authorized officers of FormKit Inc. is strictly prohibited and constitutes
21
+ unauthorized use and infringement of FormKit's intellectual property rights.
22
+
23
+ LICENSING INQUIRIES
24
+
25
+ Organizations interested in licensing this Software should contact:
26
+ enterprise@formkit.com
27
+
28
+ A written license agreement must be executed before any use of this Software
29
+ is authorized.
30
+
31
+ NO WARRANTY
32
+
33
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
34
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
35
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
36
+ FORMKIT INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
37
+ AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
38
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
39
+
40
+ GOVERNING LAW
41
+
42
+ This license shall be governed by and construed in accordance with the laws
43
+ of the jurisdiction in which FormKit Inc. is incorporated, without regard to
44
+ its conflict of law provisions.
45
+
46
+ FormKit Inc.
47
+ https://formkit.com
48
+ enterprise@formkit.com
package/dist/sip.wasm CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@standardagents/sip",
3
- "version": "0.10.1-dev.616ec2e",
3
+ "version": "0.10.1-dev.cea2b66",
4
4
  "description": "Small Image Processor - Ultra memory-efficient image processing for Cloudflare Workers",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -28,18 +28,6 @@
28
28
  "files": [
29
29
  "dist"
30
30
  ],
31
- "scripts": {
32
- "clean": "rm -f dist/index.js dist/index.d.ts dist/index.js.map",
33
- "build": "([ -f dist/sip.wasm ] || pnpm build:wasm) && pnpm clean && tsup",
34
- "build:wasm": "bash wasm/build.sh",
35
- "build:code": "pnpm clean && tsup",
36
- "dev": "tsup --watch",
37
- "typecheck": "tsc --noEmit",
38
- "test": "vitest",
39
- "test:unit": "vitest run",
40
- "test:watch": "vitest --watch",
41
- "test:workers": "vitest run --config vitest.config.workers.ts"
42
- },
43
31
  "dependencies": {
44
32
  "@jsquash/avif": "^2.1.1",
45
33
  "@jsquash/webp": "^1.5.0"
@@ -51,5 +39,17 @@
51
39
  "tsup": "^8.0.0",
52
40
  "typescript": "~5.8.0",
53
41
  "vitest": "^2.1.9"
42
+ },
43
+ "scripts": {
44
+ "clean": "rm -f dist/index.js dist/index.d.ts dist/index.js.map",
45
+ "build": "([ -f dist/sip.wasm ] || pnpm build:wasm) && pnpm clean && tsup",
46
+ "build:wasm": "bash wasm/build.sh",
47
+ "build:code": "pnpm clean && tsup",
48
+ "dev": "tsup --watch",
49
+ "typecheck": "tsc --noEmit",
50
+ "test": "vitest",
51
+ "test:unit": "vitest run",
52
+ "test:watch": "vitest --watch",
53
+ "test:workers": "vitest run --config vitest.config.workers.ts"
54
54
  }
55
- }
55
+ }