@tobelabs/chainwright 0.0.1 → 0.1.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.
Files changed (1) hide show
  1. package/package.json +85 -85
package/package.json CHANGED
@@ -1,88 +1,88 @@
1
1
  {
2
- "name": "@tobelabs/chainwright",
3
- "version": "0.0.1",
4
- "description": "Playwright-based end-to-end testing utilities for Web3 wallet interactions",
5
- "type": "module",
6
- "license": "MIT",
7
- "author": "Tobechukwu Ugwuanyi",
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/amaify/chainwright.git"
2
+ "name": "@tobelabs/chainwright",
3
+ "version": "0.1.0",
4
+ "description": "An end-to-end testing framework built on top of Playwright for Web3 wallet interactions",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Tobechukwu Ugwuanyi",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/amaify/chainwright.git"
11
+ },
12
+ "homepage": "https://github.com/amaify/chainwright#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/amaify/chainwright/issues"
15
+ },
16
+ "keywords": [
17
+ "playwright",
18
+ "e2e",
19
+ "testing",
20
+ "web3",
21
+ "wallet",
22
+ "blockchain",
23
+ "dapp"
24
+ ],
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/wallets/index.d.ts",
28
+ "import": "./dist/wallets/index.js"
11
29
  },
12
- "homepage": "https://github.com/amaify/chainwright#readme",
13
- "bugs": {
14
- "url": "https://github.com/amaify/chainwright/issues"
15
- },
16
- "keywords": [
17
- "playwright",
18
- "e2e",
19
- "testing",
20
- "web3",
21
- "wallet",
22
- "blockchain",
23
- "dapp"
24
- ],
25
- "exports": {
26
- ".": {
27
- "types": "./dist/wallets/index.d.ts",
28
- "import": "./dist/wallets/index.js"
29
- },
30
- "./core": {
31
- "types": "./dist/core/index.d.ts",
32
- "import": "./dist/core/index.js"
33
- }
34
- },
35
- "main": "./dist/wallets/index.js",
36
- "types": "./dist/wallets/index.d.ts",
37
- "bin": {
38
- "chainwright": "dist/cli/index.js"
39
- },
40
- "files": [
41
- "dist"
42
- ],
43
- "publishConfig": {
44
- "access": "public"
45
- },
46
- "engines": {
47
- "node": ">=22"
48
- },
49
- "scripts": {
50
- "build": "tsup",
51
- "changeset": "changeset",
52
- "version-package": "changeset version",
53
- "release": "pnpm run build && changeset publish",
54
- "dev": "tsx src/cli/index.ts chainwright ./tests/wallet-setup -f",
55
- "setup-wallets": "tsx src/cli/index.ts chainwright ./tests/wallet-setup --all",
56
- "wallets": "tsx src/cli/index.ts chainwright ./tests/wallet-setup --wallets keplr petra",
57
- "tests": "vitest --exclude '**/*.spec.ts'",
58
- "lint": "biome check ./src",
59
- "format": "biome format --write ./src",
60
- "tests:e2e:debug": "playwright test --config=tests/playwright.config.ts --debug",
61
- "tests:e2e:ui": "playwright test --config=tests/playwright.config.ts --ui",
62
- "add:wallet": "tsx scripts/add-wallet.ts"
63
- },
64
- "peerDependencies": {
65
- "@playwright/test": "^1.60.0"
66
- },
67
- "devDependencies": {
68
- "@biomejs/biome": "2.4.15",
69
- "@changesets/cli": "^2.31.0",
70
- "@playwright/test": "^1.60.0",
71
- "@types/adm-zip": "^0.5.8",
72
- "@types/cli-progress": "^3.11.6",
73
- "@types/node": "^25.8.0",
74
- "adm-zip": "^0.5.17",
75
- "commander": "^14.0.3",
76
- "tsup": "^8.5.1",
77
- "tsx": "^4.22.0",
78
- "typescript": "^6.0.3",
79
- "vitest": "^4.1.6"
80
- },
81
- "dependencies": {
82
- "@inquirer/checkbox": "^5.1.5",
83
- "cli-progress": "^3.12.0",
84
- "glob": "^13.0.6",
85
- "prool": "^0.2.4",
86
- "zod": "^4.4.3"
30
+ "./core": {
31
+ "types": "./dist/core/index.d.ts",
32
+ "import": "./dist/core/index.js"
87
33
  }
88
- }
34
+ },
35
+ "main": "./dist/wallets/index.js",
36
+ "types": "./dist/wallets/index.d.ts",
37
+ "bin": {
38
+ "chainwright": "dist/cli/index.js"
39
+ },
40
+ "files": [
41
+ "dist"
42
+ ],
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "engines": {
47
+ "node": ">=22"
48
+ },
49
+ "peerDependencies": {
50
+ "@playwright/test": "^1.60.0"
51
+ },
52
+ "devDependencies": {
53
+ "@biomejs/biome": "2.4.15",
54
+ "@changesets/cli": "^2.31.0",
55
+ "@playwright/test": "^1.60.0",
56
+ "@types/adm-zip": "^0.5.8",
57
+ "@types/cli-progress": "^3.11.6",
58
+ "@types/node": "^25.8.0",
59
+ "adm-zip": "^0.5.17",
60
+ "commander": "^14.0.3",
61
+ "tsup": "^8.5.1",
62
+ "tsx": "^4.22.0",
63
+ "typescript": "^6.0.3",
64
+ "vitest": "^4.1.6"
65
+ },
66
+ "dependencies": {
67
+ "@inquirer/checkbox": "^5.1.5",
68
+ "cli-progress": "^3.12.0",
69
+ "glob": "^13.0.6",
70
+ "prool": "^0.2.4",
71
+ "zod": "^4.4.3"
72
+ },
73
+ "scripts": {
74
+ "build": "tsup",
75
+ "changeset": "changeset",
76
+ "version-package": "changeset version",
77
+ "release": "pnpm run build && changeset publish",
78
+ "dev": "tsx src/cli/index.ts chainwright ./tests/wallet-setup -f",
79
+ "setup-wallets": "tsx src/cli/index.ts chainwright ./tests/wallet-setup --all",
80
+ "wallets": "tsx src/cli/index.ts chainwright ./tests/wallet-setup --wallets keplr petra",
81
+ "tests": "vitest --exclude '**/*.spec.ts'",
82
+ "lint": "biome check ./src",
83
+ "format": "biome format --write ./src",
84
+ "tests:e2e:debug": "playwright test --config=tests/playwright.config.ts --debug",
85
+ "tests:e2e:ui": "playwright test --config=tests/playwright.config.ts --ui",
86
+ "add:wallet": "tsx scripts/add-wallet.ts"
87
+ }
88
+ }