This repository has been archived by the owner on Jan 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
{
"name": "bridge-adapter-sdk",
"private": true,
"type": "module",
"license": "SEE LICENSE IN ./LICENSE",
"scripts": {
"build": "turbo run build",
"build-core": "turbo run build-core",
"build-demo": "turbo run build-demo",
"dev": "turbo run dev --concurrency=14",
"build-storybook": "turbo run build-storybook -- --quiet",
"changeset": "changeset",
"ci:publish": "turbo run build-pkg && changeset publish",
"ci:version": "changeset version",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier -w \"**/*.{js,cjs,ts,tsx,md,json}\"",
"lint": "turbo run lint && manypkg check",
"playground": "pnpm --filter @solana/bridge-adapter-react-ui playground",
"test": "turbo run test",
"version-packages": "changeset version"
},
"eslintConfig": {
"settings": {
"next": {
"rootDir": [
"packages/apps/*"
]
}
},
"extends": [
"bridge-adapter-sdk"
],
"root": true
},
"dependencies": {
"@changesets/cli": "^2.25.2",
"@manypkg/cli": "^0.21.0",
"eslint": "^8.29.0",
"eslint-config-bridge-adapter-sdk": "^0.0.0",
"prettier": "^2.8.0",
"rimraf": "^5.0.1",
"tsup": "^7.0.0",
"turbo": "1.10.13",
"zod": "^3.22.4"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"ajv@<6.12.3": ">=6.12.3",
"jsonwebtoken@<=8.5.1": ">=9.0.0",
"ws@>=6.0.0 <6.2.2": ">=6.2.2",
"postcss@<8.4.31": ">=8.4.31",
"axios@>=0.8.1 <1.6.0": ">=1.6.0",
"moment@<2.29.2": ">=2.29.2",
"moment@>=2.18.0 <2.29.4": ">=2.29.4",
"qs@>=6.5.0 <6.5.3": ">=6.5.3",
"lodash@>=3.7.0 <4.17.19": ">=4.17.19",
"lodash@<4.17.12": ">=4.17.12",
"lodash@<4.17.21": ">=4.17.21",
"tough-cookie@<4.1.3": ">=4.1.3",
"zod@<=3.22.2": ">=3.22.3"
}
}
}