forked from lens-protocol/lens-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.81 KB
/
package.json
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": "lens-sdk",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"type": "module",
"scripts": {
"build": "pnpm clean && turbo build",
"postinstall": "preconstruct dev",
"clean": "rimraf packages/*/*/dist packages/*/dist",
"test": "turbo run test --no-cache",
"dev": "turbo dev",
"dev:packages": "pnpm preconstruct dev",
"lint": "turbo run lint --parallel",
"lint:fix": "turbo run lint:fix --parallel --no-cache",
"lint:examples": "sh ./scripts/lint-examples.sh",
"typedoc": "typedoc --logLevel Verbose"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@preconstruct/cli": "^2.8.1",
"prettier": "^2.8.8",
"rimraf": "^4.4.1",
"turbo": "^1.10.16",
"typedoc": "^0.25.8",
"typedoc-material-theme": "^1.0.2",
"typedoc-plugin-extras": "^3.0.0",
"typescript": "5.2.2"
},
"resolutions": {
"ethereumjs-abi": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"arweave",
"react",
"react-native",
"@tanstack/query-core",
"csstype",
"rollup"
],
"allowedVersions": {
"@solana/web3.js": "1.52.0",
"ethers": "5.7.2"
}
},
"overrides": {
"ganache": "7.7.4"
}
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"preconstruct": {
"packages": [
"packages/api-bindings",
"packages/blockchain-bindings",
"packages/client",
"packages/domain",
"packages/gated-content",
"packages/react-web",
"packages/react-native",
"packages/react",
"packages/shared-kernel",
"packages/storage",
"packages/wagmi"
]
}
}