modelpact-tools 0.0.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 ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Sergey Avdienko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # modelpact-tools
2
+
3
+ Tools for modelpact
4
+
5
+ ## Install
6
+
7
+ ```sh
8
+ npm install modelpact-tools modelpact
9
+ ```
10
+
11
+ `modelpact` is a peer dependency: this package is built against its contract
12
+ and does not carry a copy of it.
13
+
14
+ ## Scripts
15
+
16
+ | Script | What it does |
17
+ | ---------------------- | -------------------------------- |
18
+ | `npm run typecheck` | `tsc --noEmit` over `src` |
19
+ | `npm run lint` | ESLint, type-aware |
20
+ | `npm run format:check` | Prettier, check only |
21
+ | `npm test` | Vitest, once |
22
+ | `npm run test:watch` | Vitest, watching |
23
+ | `npm run build` | `dist/` — JS, declarations, maps |
24
+
25
+ ## Releases
26
+
27
+ Versions come from [conventional commits](https://www.conventionalcommits.org)
28
+ by way of release-please, and are published to npm from CI by trusted
29
+ publishing. See [CONTRIBUTING.md](CONTRIBUTING.md).
30
+
31
+ ## License
32
+
33
+ MIT
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC"}
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "modelpact-tools",
3
+ "version": "0.0.0",
4
+ "description": "Tools for modelpact",
5
+ "keywords": [
6
+ "llm",
7
+ "modelpact",
8
+ "typescript"
9
+ ],
10
+ "license": "MIT",
11
+ "author": "Sergey Avdienko",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/AvdienkoSergey/modelpact-tools.git"
15
+ },
16
+ "homepage": "https://github.com/AvdienkoSergey/modelpact-tools#readme",
17
+ "bugs": {
18
+ "url": "https://github.com/AvdienkoSergey/modelpact-tools/issues"
19
+ },
20
+ "type": "module",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "import": "./dist/index.js"
25
+ }
26
+ },
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "sideEffects": false,
31
+ "engines": {
32
+ "node": ">=22"
33
+ },
34
+ "scripts": {
35
+ "build": "tsc -p tsconfig.build.json",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "lint": "eslint .",
39
+ "lint:fix": "eslint . --fix",
40
+ "format": "prettier --write .",
41
+ "format:check": "prettier --check .",
42
+ "typecheck": "tsc --noEmit",
43
+ "prepublishOnly": "npm run build"
44
+ },
45
+ "peerDependencies": {
46
+ "modelpact": ">=2"
47
+ },
48
+ "devDependencies": {
49
+ "@eslint/js": "^10.0.1",
50
+ "@types/node": "^26.4.1",
51
+ "eslint": "^10.9.1",
52
+ "eslint-config-prettier": "^10.1.8",
53
+ "modelpact": "^2.2.0",
54
+ "prettier": "^3.9.6",
55
+ "typescript": "~6.0.3",
56
+ "typescript-eslint": "^8.69.0",
57
+ "vitest": "^4.1.11"
58
+ }
59
+ }