@alwaysmeticulous/session-filters 2.306.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/LICENSE +15 -0
- package/README.md +9 -0
- package/package.json +45 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
ISC License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022, Meticulous Contributors
|
|
4
|
+
|
|
5
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
purpose with or without fee is hereby granted, provided that the above
|
|
7
|
+
copyright notice and this permission notice appear in all copies.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
10
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
11
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
12
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
13
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
14
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
15
|
+
PERFORMANCE OF THIS SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @alwaysmeticulous/session-filters
|
|
2
|
+
|
|
3
|
+
Validation and matching for Meticulous session filters (see `SessionFilter` in
|
|
4
|
+
`@alwaysmeticulous/api`), shared between the Meticulous CLI and backend so that
|
|
5
|
+
filter semantics cannot drift between the two.
|
|
6
|
+
|
|
7
|
+
This lives in its own package (rather than `@alwaysmeticulous/common`) because
|
|
8
|
+
it depends on the `re2` native addon, which must not be pulled into
|
|
9
|
+
webpack-bundled or browser consumers of the more widely used packages.
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@alwaysmeticulous/session-filters",
|
|
3
|
+
"version": "2.306.0",
|
|
4
|
+
"description": "Validation and matching for Meticulous session filters, shared between the CLI and the Meticulous backend",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"re2": "1.24.0",
|
|
13
|
+
"@alwaysmeticulous/api": "2.306.0"
|
|
14
|
+
},
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"vitest": "^4.1.7"
|
|
17
|
+
},
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "The Meticulous Team",
|
|
20
|
+
"email": "eng@meticulous.ai",
|
|
21
|
+
"url": "https://meticulous.ai"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">= 18"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/alwaysmeticulous/meticulous-sdk",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/alwaysmeticulous/meticulous-sdk.git",
|
|
30
|
+
"directory": "packages/session-filters"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
37
|
+
"build": "tsc --build tsconfig.json",
|
|
38
|
+
"dev": "tsc --build tsconfig.json --watch",
|
|
39
|
+
"format": "prettier --write src",
|
|
40
|
+
"lint": "oxlint --type-aware src",
|
|
41
|
+
"lint:fix": "oxlint --type-aware src --fix",
|
|
42
|
+
"depcheck": "depcheck --ignore-patterns=dist",
|
|
43
|
+
"test": "vitest run"
|
|
44
|
+
}
|
|
45
|
+
}
|