seg-cam 0.1.0 → 0.2.0
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/NOTICE +12 -0
- package/package.json +4 -2
package/NOTICE
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
seg-cam
|
|
2
|
+
Copyright 2026 Seg-Cam Team
|
|
3
|
+
|
|
4
|
+
This product includes software developed by the TensorFlow.js team
|
|
5
|
+
(https://v8.tfjs.dev/) and Google (Apache 2.0 License).
|
|
6
|
+
|
|
7
|
+
The BodyPix model used in this project is part of the TensorFlow.js models
|
|
8
|
+
collection and is licensed under the Apache 2.0 License.
|
|
9
|
+
Copyright Google LLC.
|
|
10
|
+
|
|
11
|
+
This product includes icons from Lucide React (https://lucide.dev/),
|
|
12
|
+
licensed under the ISC License.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "seg-cam",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -12,9 +12,11 @@
|
|
|
12
12
|
"require": "./dist/index.js"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
|
+
"license": "CC-BY-NC-SA-4.0",
|
|
15
16
|
"files": [
|
|
16
17
|
"dist",
|
|
17
|
-
"public/jersey-detector-worker.js"
|
|
18
|
+
"public/jersey-detector-worker.js",
|
|
19
|
+
"NOTICE"
|
|
18
20
|
],
|
|
19
21
|
"scripts": {
|
|
20
22
|
"prebuild": "esbuild src/workers/jersey-detector-worker.ts --bundle --outfile=public/jersey-detector-worker.js --format=esm --target=es2020",
|