Skip to content

Commit 6486d5d

Browse files
committed
release 13.0.0 again:
1 parent 7ab0aa4 commit 6486d5d

File tree

5 files changed

+11932
-2018
lines changed

5 files changed

+11932
-2018
lines changed

package.json

Lines changed: 52 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,54 @@
11
{
2-
"name": "mobile-wallet-protocol",
3-
"version": "13.0.0",
4-
"private": true,
5-
"type": "module",
6-
"workspaces": [
7-
"packages/*"
8-
],
9-
"repository": {
10-
"type": "git",
11-
"url": "https://github.com/MetaMask/mobile-wallet-protocol.git"
12-
},
13-
"scripts": {
14-
"release": "node scripts/create-release.mjs -i",
15-
"build": "yarn workspaces foreach --topological --verbose run build",
16-
"changelog:update": "yarn workspaces foreach --no-private --parallel --interlaced --verbose run changelog:update",
17-
"changelog:validate": "yarn workspaces foreach --no-private --parallel --interlaced --verbose run changelog:validate",
18-
"test": "vitest run",
19-
"test:unit": "vitest run --exclude '**/apps/integration-tests/**' --exclude '**/*.integration.test.ts'",
20-
"test:integration": "vitest run apps/integration-tests '**/*.integration.test.ts'",
21-
"test:watch": "vitest watch",
22-
"test:ci": "vitest run --coverage --coverage.reporter=text --silent",
23-
"lint": "yarn biome lint ./packages",
24-
"lint:ci": "yarn biome ci ./packages",
25-
"lint:fix": "yarn biome format --write ./apps ./packages",
26-
"llm": "npx repomix -o .llm.txt",
27-
"llm:packages": "npx repomix -o .llm-packages.txt ./packages --ignore '**/dist/**'",
28-
"llm:apps": "npx repomix -o .llm-apps.txt ./apps --ignore '**/dist/**'"
29-
},
30-
"devDependencies": {
31-
"@biomejs/biome": "2.0.0",
32-
"@lavamoat/allow-scripts": "^3.3.3",
33-
"@metamask/auto-changelog": "^5.0.2",
34-
"@metamask/create-release-branch": "^4.1.3",
35-
"@types/node": "^24.0.3",
36-
"@vitest/coverage-v8": "3.2.4",
37-
"prettier": "^3.3.3",
38-
"tsup": "^8.5.0",
39-
"typescript": "^5.8.3",
40-
"vitest": "^3.2.4"
41-
},
42-
"packageManager": "[email protected]",
43-
"lavamoat": {
44-
"allowScripts": {
45-
"@lavamoat/preinstall-always-fail": false,
46-
"simple-git-hooks": false,
47-
"tsup>esbuild": false
48-
}
49-
},
50-
"dependencies": {
51-
"eventemitter3": "^5.0.1"
52-
}
2+
"name": "mobile-wallet-protocol",
3+
"version": "13.0.0",
4+
"private": true,
5+
"type": "module",
6+
"workspaces": [
7+
"packages/*",
8+
"apps/*"
9+
],
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/MetaMask/mobile-wallet-protocol.git"
13+
},
14+
"scripts": {
15+
"release": "node scripts/create-release.mjs -i",
16+
"build": "yarn workspaces foreach --topological --verbose run build",
17+
"changelog:update": "yarn workspaces foreach --no-private --parallel --interlaced --verbose run changelog:update",
18+
"changelog:validate": "yarn workspaces foreach --no-private --parallel --interlaced --verbose run changelog:validate",
19+
"test": "vitest run",
20+
"test:unit": "vitest run --exclude '**/apps/integration-tests/**' --exclude '**/*.integration.test.ts'",
21+
"test:integration": "vitest run apps/integration-tests '**/*.integration.test.ts'",
22+
"test:watch": "vitest watch",
23+
"test:ci": "vitest run --coverage --coverage.reporter=text --silent",
24+
"lint": "yarn biome lint ./packages",
25+
"lint:ci": "yarn biome ci ./packages",
26+
"lint:fix": "yarn biome format --write ./apps ./packages",
27+
"llm": "npx repomix -o .llm.txt",
28+
"llm:packages": "npx repomix -o .llm-packages.txt ./packages --ignore '**/dist/**'",
29+
"llm:apps": "npx repomix -o .llm-apps.txt ./apps --ignore '**/dist/**'"
30+
},
31+
"devDependencies": {
32+
"@biomejs/biome": "2.0.0",
33+
"@lavamoat/allow-scripts": "^3.3.3",
34+
"@metamask/auto-changelog": "^5.0.2",
35+
"@metamask/create-release-branch": "^4.1.3",
36+
"@types/node": "^24.0.3",
37+
"@vitest/coverage-v8": "3.2.4",
38+
"prettier": "^3.3.3",
39+
"tsup": "^8.5.0",
40+
"typescript": "^5.8.3",
41+
"vitest": "^3.2.4"
42+
},
43+
"packageManager": "[email protected]",
44+
"lavamoat": {
45+
"allowScripts": {
46+
"@lavamoat/preinstall-always-fail": false,
47+
"simple-git-hooks": false,
48+
"tsup>esbuild": false
49+
}
50+
},
51+
"dependencies": {
52+
"eventemitter3": "^5.0.1"
53+
}
5354
}

package.json.bak

Lines changed: 0 additions & 54 deletions
This file was deleted.

packages/dapp-client/package.json

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
{
2-
"name": "@metamask/mobile-wallet-protocol-dapp-client",
3-
"version": "0.2.2",
4-
"homepage": "https://github.com/MetaMask/mobile-wallet-protocol/tree/main/packages/dapp-client#readme",
5-
"bugs": {
6-
"url": "https://github.com/MetaMask/mobile-wallet-protocol/issues"
7-
},
8-
"repository": {
9-
"type": "git",
10-
"url": "https://github.com/MetaMask/mobile-wallet-protocol.git"
11-
},
12-
"license": "MIT",
13-
"main": "./dist/index.js",
14-
"module": "./dist/index.mjs",
15-
"types": "./dist/index.d.ts",
16-
"exports": {
17-
".": {
18-
"import": {
19-
"types": "./dist/index.d.mts",
20-
"default": "./dist/index.mjs"
21-
},
22-
"require": {
23-
"types": "./dist/index.d.ts",
24-
"default": "./dist/index.js"
25-
}
26-
}
27-
},
28-
"files": [
29-
"dist"
30-
],
31-
"scripts": {
32-
"build": "tsup src/index.ts --format cjs,esm --dts --splitting",
33-
"changelog:update": "../../scripts/update-changelog.sh @metamask/mobile-wallet-protocol-dapp-client",
34-
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/mobile-wallet-protocol-dapp-client"
35-
},
36-
"publishConfig": {
37-
"access": "public",
38-
"registry": "https://registry.npmjs.org/"
39-
},
40-
"dependencies": {
41-
"@metamask/mobile-wallet-protocol-core": "workspace:^",
42-
"@metamask/utils": "^9.1.0",
43-
"uuid": "^11.1.0"
44-
},
45-
"devDependencies": {
46-
"@metamask/auto-changelog": "^5.0.2",
47-
"@types/uuid": "^10.0.0",
48-
"@types/ws": "^8.18.1",
49-
"prettier": "^3.3.3",
50-
"tsup": "^8.5.0",
51-
"ws": "^8.18.2"
52-
}
2+
"name": "@metamask/mobile-wallet-protocol-dapp-client",
3+
"version": "0.2.2",
4+
"homepage": "https://github.com/MetaMask/mobile-wallet-protocol/tree/main/packages/dapp-client#readme",
5+
"bugs": {
6+
"url": "https://github.com/MetaMask/mobile-wallet-protocol/issues"
7+
},
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/MetaMask/mobile-wallet-protocol.git"
11+
},
12+
"license": "MIT",
13+
"main": "./dist/index.js",
14+
"module": "./dist/index.mjs",
15+
"types": "./dist/index.d.ts",
16+
"exports": {
17+
".": {
18+
"import": {
19+
"types": "./dist/index.d.mts",
20+
"default": "./dist/index.mjs"
21+
},
22+
"require": {
23+
"types": "./dist/index.d.ts",
24+
"default": "./dist/index.js"
25+
}
26+
}
27+
},
28+
"files": [
29+
"dist"
30+
],
31+
"scripts": {
32+
"build": "tsup src/index.ts --format cjs,esm --dts --splitting",
33+
"changelog:update": "../../scripts/update-changelog.sh @metamask/mobile-wallet-protocol-dapp-client",
34+
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/mobile-wallet-protocol-dapp-client"
35+
},
36+
"publishConfig": {
37+
"access": "public",
38+
"registry": "https://registry.npmjs.org/"
39+
},
40+
"dependencies": {
41+
"@metamask/mobile-wallet-protocol-core": "workspace:^",
42+
"@metamask/utils": "^9.1.0",
43+
"uuid": "^11.1.0"
44+
},
45+
"devDependencies": {
46+
"@metamask/auto-changelog": "^5.0.2",
47+
"@types/uuid": "^10.0.0",
48+
"@types/ws": "^8.18.1",
49+
"prettier": "^3.3.3",
50+
"tsup": "^8.5.0",
51+
"ws": "^8.18.2"
52+
}
5353
}
Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
{
2-
"name": "@metamask/mobile-wallet-protocol-wallet-client",
3-
"version": "0.2.2",
4-
"homepage": "https://github.com/MetaMask/mobile-wallet-protocol/tree/main/packages/wallet-client#readme",
5-
"bugs": {
6-
"url": "https://github.com/MetaMask/mobile-wallet-protocol/issues"
7-
},
8-
"repository": {
9-
"type": "git",
10-
"url": "https://github.com/MetaMask/mobile-wallet-protocol.git"
11-
},
12-
"license": "MIT",
13-
"main": "./dist/index.js",
14-
"module": "./dist/index.mjs",
15-
"types": "./dist/index.d.ts",
16-
"exports": {
17-
".": {
18-
"import": {
19-
"types": "./dist/index.d.mts",
20-
"default": "./dist/index.mjs"
21-
},
22-
"require": {
23-
"types": "./dist/index.d.ts",
24-
"default": "./dist/index.js"
25-
}
26-
}
27-
},
28-
"files": [
29-
"dist"
30-
],
31-
"scripts": {
32-
"build": "tsup src/index.ts --format cjs,esm --dts --splitting",
33-
"changelog:update": "../../scripts/update-changelog.sh @metamask/mobile-wallet-protocol-wallet-client",
34-
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/mobile-wallet-protocol-wallet-client"
35-
},
36-
"publishConfig": {
37-
"access": "public",
38-
"registry": "https://registry.npmjs.org/"
39-
},
40-
"dependencies": {
41-
"@metamask/mobile-wallet-protocol-core": "workspace:^",
42-
"@metamask/utils": "^9.1.0",
43-
"uuid": "^11.1.0"
44-
},
45-
"devDependencies": {
46-
"@metamask/auto-changelog": "^5.0.2",
47-
"@types/uuid": "^10.0.0",
48-
"@types/ws": "^8.18.1",
49-
"prettier": "^3.3.3",
50-
"tsup": "^8.5.0",
51-
"ws": "^8.18.2"
52-
}
2+
"name": "@metamask/mobile-wallet-protocol-wallet-client",
3+
"version": "0.2.2",
4+
"homepage": "https://github.com/MetaMask/mobile-wallet-protocol/tree/main/packages/wallet-client#readme",
5+
"bugs": {
6+
"url": "https://github.com/MetaMask/mobile-wallet-protocol/issues"
7+
},
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/MetaMask/mobile-wallet-protocol.git"
11+
},
12+
"license": "MIT",
13+
"main": "./dist/index.js",
14+
"module": "./dist/index.mjs",
15+
"types": "./dist/index.d.ts",
16+
"exports": {
17+
".": {
18+
"import": {
19+
"types": "./dist/index.d.mts",
20+
"default": "./dist/index.mjs"
21+
},
22+
"require": {
23+
"types": "./dist/index.d.ts",
24+
"default": "./dist/index.js"
25+
}
26+
}
27+
},
28+
"files": [
29+
"dist"
30+
],
31+
"scripts": {
32+
"build": "tsup src/index.ts --format cjs,esm --dts --splitting",
33+
"changelog:update": "../../scripts/update-changelog.sh @metamask/mobile-wallet-protocol-wallet-client",
34+
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/mobile-wallet-protocol-wallet-client"
35+
},
36+
"publishConfig": {
37+
"access": "public",
38+
"registry": "https://registry.npmjs.org/"
39+
},
40+
"dependencies": {
41+
"@metamask/mobile-wallet-protocol-core": "workspace:^",
42+
"@metamask/utils": "^9.1.0",
43+
"uuid": "^11.1.0"
44+
},
45+
"devDependencies": {
46+
"@metamask/auto-changelog": "^5.0.2",
47+
"@types/uuid": "^10.0.0",
48+
"@types/ws": "^8.18.1",
49+
"prettier": "^3.3.3",
50+
"tsup": "^8.5.0",
51+
"ws": "^8.18.2"
52+
}
5353
}

0 commit comments

Comments
 (0)