-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.89 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "mobile-wallet-protocol",
"version": "14.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/mobile-wallet-protocol.git"
},
"scripts": {
"release": "node scripts/create-release.mjs -i",
"build": "yarn workspaces foreach --topological --verbose run build",
"changelog:update": "yarn workspaces foreach --no-private --parallel --interlaced --verbose run changelog:update",
"changelog:validate": "yarn workspaces foreach --no-private --parallel --interlaced --verbose run changelog:validate",
"test": "vitest run",
"test:unit": "vitest run --exclude '**/apps/integration-tests/**' --exclude '**/*.integration.test.ts'",
"test:integration": "vitest run apps/integration-tests '**/*.integration.test.ts'",
"test:watch": "vitest watch",
"test:ci": "vitest run --coverage --coverage.reporter=text --silent",
"lint": "yarn biome lint ./packages",
"lint:ci": "yarn biome ci ./packages",
"lint:fix": "yarn biome format --write ./apps ./packages",
"llm": "npx repomix -o .llm.txt",
"llm:packages": "npx repomix -o .llm-packages.txt ./packages --ignore '**/dist/**'",
"llm:apps": "npx repomix -o .llm-apps.txt ./apps --ignore '**/dist/**'"
},
"devDependencies": {
"@biomejs/biome": "2.0.0",
"@lavamoat/allow-scripts": "^3.3.3",
"@metamask/auto-changelog": "^5.0.2",
"@metamask/create-release-branch": "^4.1.3",
"@types/node": "^24.0.3",
"@vitest/coverage-v8": "3.2.4",
"prettier": "^3.3.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.2.2",
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"simple-git-hooks": false,
"tsup>esbuild": false,
"tsup>postcss-load-config>tsx>esbuild": false
}
},
"dependencies": {
"eventemitter3": "^5.0.1"
}
}