@uwrl/qc-utils 0.0.17 → 0.0.18
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 +56 -0
- package/dist/index.js +2149 -893
- package/dist/index.umd.cjs +15 -5
- package/dist/types/index.d.ts +38 -16
- package/dist/utils/format.d.ts +0 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/plotting/__tests__/calibration.spec.d.ts +16 -0
- package/dist/utils/plotting/__tests__/observation-record-paths.spec.d.ts +21 -0
- package/dist/utils/plotting/__tests__/operation-cores.spec.d.ts +12 -0
- package/dist/utils/plotting/__tests__/workerMocks.d.ts +119 -0
- package/dist/utils/plotting/__tests__/workers.spec.d.ts +18 -0
- package/dist/utils/plotting/add-data.worker.d.ts +1 -0
- package/dist/utils/plotting/calibration.d.ts +99 -0
- package/dist/utils/plotting/change.worker.d.ts +1 -0
- package/dist/utils/plotting/delete-data.worker.d.ts +1 -0
- package/dist/utils/plotting/drift-correction.worker.d.ts +1 -0
- package/dist/utils/plotting/fill-gaps.worker.d.ts +1 -0
- package/dist/utils/plotting/find-gaps.worker.d.ts +1 -0
- package/dist/utils/plotting/interpolate.worker.d.ts +1 -0
- package/dist/utils/plotting/observation-record.d.ts +153 -27
- package/dist/utils/plotting/operation-cores.d.ts +139 -0
- package/dist/utils/plotting/persistence.worker.d.ts +1 -0
- package/dist/utils/plotting/rate-of-change.worker.d.ts +1 -0
- package/dist/utils/plotting/shift-datetimes.worker.d.ts +1 -0
- package/dist/utils/plotting/value-threshold.worker.d.ts +1 -0
- package/package.json +61 -56
- /package/dist/utils/plotting/{__tests__/delete-data.worker.spec.d.ts → change-values.worker.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,57 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@uwrl/qc-utils",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Quality Control Utilities",
|
|
5
|
-
"homepage": "https://github.com/hydroserver2/qc-utils#readme",
|
|
6
|
-
"bugs": {
|
|
7
|
-
"url": "https://github.com/hydroserver2/qc-utils/issues"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/hydroserver2/qc-utils.git"
|
|
12
|
-
},
|
|
13
|
-
"license": "ISC",
|
|
14
|
-
"author": "Maurier Ramirez",
|
|
15
|
-
"main": "./dist/index.cjs",
|
|
16
|
-
"module": "./dist/index.js",
|
|
17
|
-
"exports": {
|
|
18
|
-
".": {
|
|
19
|
-
"require": "./dist/index.cjs",
|
|
20
|
-
"import": "./dist/index.js"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"types": "./dist/types.d.ts",
|
|
24
|
-
"files": [
|
|
25
|
-
"dist"
|
|
26
|
-
],
|
|
27
|
-
"type": "module",
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "npm run clean:dist && vite build --mode prod && vue-tsc --declaration --emitDeclarationOnly",
|
|
30
|
-
"pub": "npm publish --access public",
|
|
31
|
-
"clean:dist": "rimraf dist",
|
|
32
|
-
"clean:coverage": "rimraf coverage",
|
|
33
|
-
"preview": "vite preview",
|
|
34
|
-
"lint": "eslint .",
|
|
35
|
-
"lint:fix": "eslint . --fix",
|
|
36
|
-
"test": "
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"eslint
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@uwrl/qc-utils",
|
|
3
|
+
"version": "0.0.18",
|
|
4
|
+
"description": "Quality Control Utilities",
|
|
5
|
+
"homepage": "https://github.com/hydroserver2/qc-utils#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/hydroserver2/qc-utils/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/hydroserver2/qc-utils.git"
|
|
12
|
+
},
|
|
13
|
+
"license": "ISC",
|
|
14
|
+
"author": "Maurier Ramirez",
|
|
15
|
+
"main": "./dist/index.cjs",
|
|
16
|
+
"module": "./dist/index.js",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"require": "./dist/index.cjs",
|
|
20
|
+
"import": "./dist/index.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"types": "./dist/types.d.ts",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"type": "module",
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "npm run clean:dist && vite build --mode prod && vue-tsc --declaration --emitDeclarationOnly",
|
|
30
|
+
"pub": "npm publish --access public",
|
|
31
|
+
"clean:dist": "rimraf dist",
|
|
32
|
+
"clean:coverage": "rimraf coverage",
|
|
33
|
+
"preview": "vite preview",
|
|
34
|
+
"lint": "eslint .",
|
|
35
|
+
"lint:fix": "eslint . --fix",
|
|
36
|
+
"test": "vitest run",
|
|
37
|
+
"coverage": "vitest run --coverage",
|
|
38
|
+
"up": "taze major -I",
|
|
39
|
+
"link": "npm link",
|
|
40
|
+
"dev": "vite build --watch --mode prod"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"rxjs": "^7.8.2",
|
|
44
|
+
"vite": "^8.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@eslint/js": "^10.0.1",
|
|
48
|
+
"@types/node": "^25.0.0",
|
|
49
|
+
"eslint": "^10.0.0",
|
|
50
|
+
"eslint-plugin-cypress": "^6.0.0",
|
|
51
|
+
"eslint-plugin-prettier": "^5.4.1",
|
|
52
|
+
"happy-dom": "^20.9.0",
|
|
53
|
+
"rimraf": "^6.0.1",
|
|
54
|
+
"rollup-plugin-visualizer": "^7.0.0",
|
|
55
|
+
"stylelint": "^17.0.0",
|
|
56
|
+
"taze": "^19.1.0",
|
|
57
|
+
"typescript": "latest",
|
|
58
|
+
"typescript-eslint": "^8.58.2",
|
|
59
|
+
"vitest": "^4.0.1",
|
|
60
|
+
"vue-tsc": "^3.0.5"
|
|
61
|
+
}
|
|
57
62
|
}
|
/package/dist/utils/plotting/{__tests__/delete-data.worker.spec.d.ts → change-values.worker.d.ts}
RENAMED
|
File without changes
|