-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
112 lines (112 loc) · 3.06 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@xdefi-tech/chains",
"version": "1.0.0",
"private": true,
"workspaces": [
"utility-packages/*",
"packages/*",
"examples/*"
],
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"size-build": "yarn list | grep @size-limit/file || yarn add --dev @size-limit/[email protected] @size-limit/[email protected] [email protected] --ignore-workspace-root-check --frozen-lockfile && turbo run build",
"dev": "turbo run dev",
"publish:packages": "turbo run build && turbo run publish:packages",
"coverage:per-package": "turbo run coverage",
"coverage:total": "yarn coverage:per-package && node coverage.js",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"compile": "turbo run compile",
"compile:build": "turbo run compile:build",
"watch": "turbo run watch --parallel",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rimraf node_modules",
"typedoc": "turbo run typedoc",
"chain:generate": "HYGEN_TMPLS=templates hygen basic new",
"publish-packages": "turbo run build lint && changeset version && changeset publish",
"size": "yarn size-build && size-limit",
"test:cicd": "turbo run test:cicd"
},
"size-limit": [
{
"path": "packages/bitcoin/dist",
"webpack": false
},
{
"path": "packages/bitcoincash/dist",
"webpack": false
},
{
"path": "packages/core/dist",
"webpack": false
},
{
"path": "packages/cosmos/dist",
"webpack": false
},
{
"path": "packages/dogecoin/dist",
"webpack": false
},
{
"path": "packages/evm/dist",
"webpack": false
},
{
"path": "packages/litecoin/dist",
"webpack": false
},
{
"path": "packages/solana/dist",
"webpack": false
},
{
"path": "packages/thor/dist",
"webpack": false
},
{
"path": "packages/tron/dist",
"webpack": false
},
{
"path": "packages/utxo/dist",
"webpack": false
}
],
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.21.0",
"@babel/preset-env": "7.21.5",
"@babel/preset-typescript": "7.23.3",
"@size-limit/file": "11.1.4",
"@size-limit/preset-big-lib": "11.1.4",
"babel-loader": "9.1.2",
"husky": "8.0.3",
"prettier": "2.5.1",
"size-limit": "11.1.4",
"terser-webpack-plugin": "5.3.7",
"ts-loader": "9.4.2",
"turbo": "latest",
"webpack": "5.82.1",
"webpack-cli": "5.1.1",
"webpack-merge": "5.8.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=18.0.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/plugin-syntax-jsx": "7.21.4",
"@babel/plugin-transform-typescript": "7.21.3",
"@changesets/cli": "2.26.0",
"encoding": "0.1.13",
"hygen": "6.2.0",
"rimraf": "4.4.0",
"tsconfig-paths-webpack-plugin": "4.0.1"
}
}