@3dsource/utils 1.0.15 → 1.0.17
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/README.md +22 -5
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# 3dsource
|
|
1
|
+
# @3dsource/utils
|
|
2
2
|
|
|
3
3
|
### A set of utils for using in 3dsource projects
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
-
### peer dependencies
|
|
7
|
+
### add peer dependencies
|
|
8
8
|
|
|
9
9
|
_List of peer dependencies_
|
|
10
10
|
|
|
@@ -17,13 +17,30 @@ _List of peer dependencies_
|
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
```shell
|
|
20
|
-
npx install-peerdeps @3dsource/
|
|
20
|
+
npx install-peerdeps @3dsource/utils
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
### library
|
|
23
|
+
### add library
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
npm i @3dsource/
|
|
26
|
+
npm i @3dsource/utils
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Usage
|
|
30
|
+
|
|
31
|
+
_List of utils_
|
|
32
|
+
|
|
33
|
+
- [color](src/lib/color)
|
|
34
|
+
- [constants](src/lib/constants)
|
|
35
|
+
- [csv](src/lib/csv)
|
|
36
|
+
- [dev](src/lib/dev)
|
|
37
|
+
- [filenaming](src/lib/filenaming)
|
|
38
|
+
- [geom](src/lib/geom)
|
|
39
|
+
- [helpers](src/lib/helpers)
|
|
40
|
+
- [image](src/lib/image)
|
|
41
|
+
- [interfaces](src/lib/interfaces)
|
|
42
|
+
- [math](src/lib/math)
|
|
43
|
+
- [mutex](src/lib/mutex)
|
|
44
|
+
- [predicates](src/lib/predicates)
|
|
45
|
+
- [rxjs](src/lib/rxjs)
|
|
46
|
+
- [strings](src/lib/strings)
|
package/package.json
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@3dsource/utils",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"sideEffects": false,
|
|
5
|
-
"license": "UNLICENSED",
|
|
3
|
+
"version": "1.0.17",
|
|
6
4
|
"description": "A set of utils for using in 3dsource projects",
|
|
7
5
|
"keywords": [
|
|
8
6
|
"3dsource",
|
|
@@ -12,7 +10,9 @@
|
|
|
12
10
|
"type": "git",
|
|
13
11
|
"url": "private"
|
|
14
12
|
},
|
|
13
|
+
"license": "UNLICENSED",
|
|
15
14
|
"author": "3dsource",
|
|
15
|
+
"sideEffects": false,
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"tslib": "^2.8.1"
|
|
18
18
|
},
|