@partylayer/conformance-runner 0.1.5 → 0.1.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @cantonconnect/conformance-runner
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Add repository URLs and README documentation for registry-cli, adapter-starter, and conformance-runner.
8
+
3
9
  ## 0.1.5
4
10
 
5
11
  ### Patch Changes
package/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # @partylayer/conformance-runner
2
+
3
+ <div align="center">
4
+
5
+ **CLI tool for running adapter and CIP-0103 conformance tests**
6
+
7
+ [![npm version](https://img.shields.io/npm/v/@partylayer/conformance-runner.svg?style=flat-square)](https://www.npmjs.com/package/@partylayer/conformance-runner)
8
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square)](https://opensource.org/licenses/MIT)
9
+
10
+ </div>
11
+
12
+ ---
13
+
14
+ ## Overview
15
+
16
+ Conformance test runner that validates wallet adapters and CIP-0103 providers against the PartyLayer specification. Ensures adapters implement all required methods and follow expected behavior patterns.
17
+
18
+ ---
19
+
20
+ ## Installation
21
+
22
+ ```bash
23
+ npm install -g @partylayer/conformance-runner
24
+ ```
25
+
26
+ ---
27
+
28
+ ## Usage
29
+
30
+ ```bash
31
+ partylayer-conformance --help
32
+ ```
33
+
34
+ ---
35
+
36
+ ## Links
37
+
38
+ - [GitHub Repository](https://github.com/PartyLayer/PartyLayer)
39
+ - [Report Issues](https://github.com/PartyLayer/PartyLayer/issues)
40
+
41
+ ---
42
+
43
+ ## License
44
+
45
+ MIT
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,12 +1,18 @@
1
1
  {
2
2
  "name": "@partylayer/conformance-runner",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "CLI tool for running adapter conformance tests",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "partylayer-conformance": "./dist/index.js"
8
8
  },
9
9
  "main": "./dist/index.js",
10
+ "scripts": {
11
+ "build": "tsc && tsc --project tsconfig.esm.json",
12
+ "clean": "rm -rf dist",
13
+ "lint": "eslint src --ext .ts",
14
+ "typecheck": "tsc --noEmit"
15
+ },
10
16
  "keywords": [
11
17
  "canton",
12
18
  "wallet",
@@ -14,20 +20,23 @@
14
20
  "conformance",
15
21
  "testing"
16
22
  ],
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/PartyLayer/PartyLayer.git",
26
+ "directory": "packages/conformance-runner"
27
+ },
28
+ "homepage": "https://github.com/PartyLayer/PartyLayer/tree/main/packages/conformance-runner",
29
+ "bugs": {
30
+ "url": "https://github.com/PartyLayer/PartyLayer/issues"
31
+ },
17
32
  "license": "MIT",
18
33
  "dependencies": {
19
- "commander": "^14.0.2",
20
- "@partylayer/provider": "0.1.1",
21
- "@partylayer/core": "0.2.4"
34
+ "@partylayer/core": "workspace:*",
35
+ "@partylayer/provider": "workspace:*",
36
+ "commander": "^14.0.2"
22
37
  },
23
38
  "devDependencies": {
24
39
  "@types/node": "^20.11.0",
25
40
  "typescript": "^5.3.3"
26
- },
27
- "scripts": {
28
- "build": "tsc && tsc --project tsconfig.esm.json",
29
- "clean": "rm -rf dist",
30
- "lint": "eslint src --ext .ts",
31
- "typecheck": "tsc --noEmit"
32
41
  }
33
- }
42
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 PartyLayer
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.