-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.8 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.8 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
76
77
78
79
80
81
82
{
"name": "root",
"private": true,
"description": "XChainJS Chain Clients MonoRepo",
"packageManager": "yarn@4.9.2",
"engines": {
"yarn": ">=4.9.2"
},
"workspaces": [
"packages/*",
"examples/*",
"tools/*"
],
"scripts": {
"clean": "turbo run clean && rm -rf ./.turbo",
"clean:nodemodules": "rm -rf ./packages/*/node_modules && rm -rf ./node_modules",
"clean:stats": "rm -r ./packages/*/stats.html",
"build": "turbo run build --cache-dir=.turbo --filter='./packages/*'",
"build:release": "turbo run build:release --cache-dir=.turbo --filter='./packages/*'",
"build:examples": "turbo run build --cache-dir=.turbo --filter='./examples/*'",
"build:tools": "turbo run build --cache-dir=.turbo --filter='./tools/*' --filter='!testing-gui'",
"test": "turbo run test --cache-dir=.turbo --filter='!testing-gui'",
"pub": "turbo publish",
"e2e": "turbo run e2e",
"lint": "turbo run lint",
"check:trunk": "./scripts/trunk-check.sh",
"update-packages": "yarn changeset",
"increase-packages": "yarn changeset version",
"publish-packages": "turbo run build:release test --cache-dir=.turbo --filter='./packages/*' && yarn increase-packages && yarn changeset publish",
"notification:prepare": "ts-node scripts/notification.ts",
"analyze-bundles": "turbo run build --cache-dir=.turbo --filter='./packages/*' && echo \"Bundle analysis files (stats.html) have been generated in each package's dist directory\""
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"resolutions": {
"unrs-resolver": "1.7.0",
"braces": "3.0.3",
"cross-spawn": "7.0.5",
"micromatch": "4.0.8",
"word-wrap": "1.2.4",
"undici": "5.29.0",
"form-data": "4.0.4",
"elliptic": "^6.6.1",
"sha.js": "2.4.12",
"cipher-base": "1.0.7"
},
"devDependencies": {
"@actions/core": "1.10.0",
"@changesets/cli": "^2.29.4",
"@rollup/plugin-commonjs": "28.0.0",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-wasm": "^6.2.2",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"dotenv": "^16.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^30.0.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.2.0",
"rimraf": "5.0.0",
"rollup": "4.59.0",
"rollup-plugin-visualizer": "^5.14.0",
"ts-jest": "29.3.4",
"ts-node": "10.9.2",
"tslib": "^2.5.0",
"turbo": "1.13.0",
"typescript": "^5.8.3",
"weighted": "^1.0.0"
}
}