-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "actions",
"private": true,
"version": "0.0.1",
"description": "Actions SDK and demo applications",
"repository": {
"type": "git",
"url": "https://github.com/ethereum-optimism/actions.git"
},
"homepage": "https://github.com/ethereum-optimism/actions#readme",
"bugs": {
"url": "https://github.com/ethereum-optimism/actions/issues"
},
"workspaces": [
"packages/*",
"packages/demo/*"
],
"nx": {},
"scripts": {
"clean": "pnpm -r clean",
"dev": "mprocs --config mprocs.yml",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"release:publish": "pnpm install --frozen-lockfile && pnpm nx run-many --target=build && changeset publish",
"release:version": "changeset version && pnpm install --lockfile-only",
"release:version:snapshot": "changeset version --snapshot ${SNAPSHOT_NAME:-snapshot} && pnpm install --lockfile-only",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@eslint/compat": "^1.3.1",
"@nx/js": "^21.3.2",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^51.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.0.0",
"mprocs": "^0.7.2",
"nx": "^21.3.2",
"prettier": "^3.0.0",
"resolve-tspaths": "^0.8.18",
"tsx": "^4.0.0"
},
"pnpm": {
"overrides": {
"nx>axios": "^1.12.0",
"viem": "2.33.0",
"zod@3.22.4": "3.25.76",
"@dynamic-labs/wallet-connector-core": "4.31.4",
"@dynamic-labs/wallet-book": "4.31.4",
"@dynamic-labs/ethereum-core": "4.31.4",
"@dynamic-labs/utils": "4.31.4",
"@dynamic-labs/types": "4.31.4",
"@dynamic-labs/logger": "4.31.4",
"@dynamic-labs/iconic": "4.31.4",
"@dynamic-labs/rpc-providers": "4.31.4"
},
"peerDependencyRules": {
"allowedVersions": {
"viem": "2.33.0",
"zod": "3.25.76"
}
}
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.0.0"
}