-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 5.22 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 5.22 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "web3.js",
"private": true,
"description": "QRL API wrappers and utilities",
"author": "The QRL Contributors",
"license": "LGPL-3.0",
"keywords": [
"qrl",
"web3",
"web3js",
"web3.js",
"blockchain"
],
"homepage": "https://github.com/theqrl/web3.js#readme",
"repository": {
"type": "git",
"url": "https://github.com/theQRL/web3.js"
},
"bugs": {
"url": "https://github.com/theqrl/web3.js/issues"
},
"engines": {
"node": ">=20",
"pnpm": ">=10.27.0"
},
"workspaces": {
"packages": [
"packages/*",
"tools/*"
]
},
"scripts": {
"version": "pnpm run bootstrap && pnpm run build",
"bootstrap": "pnpm install --frozen-lockfile",
"prebuild": "pnpm run clean",
"build": "turbo run build --filter=\"./packages/*\" --filter=\"./tools/*\"",
"build:types": "turbo run build:types --filter=\"./packages/*\" --filter=\"./tools/*\"",
"build:cjs": "turbo run build:cjs --filter=\"./packages/*\" --filter=\"./tools/*\"",
"build:esm": "turbo run build:esm --filter=\"./packages/*\" --filter=\"./tools/*\"",
"build:web": "turbo run build:web --filter=\"@theqrl/web3\" --filter=\"@theqrl/web3-validator\"",
"build:web:analyze": "turbo run build:web:analyze --filter=\"@theqrl/web3\"",
"build:docs": "pnpm --dir docs run build",
"changelog": "ts-node -P scripts/changelog/tsconfig.json scripts/changelog/src/index.ts",
"init:secrets": "ts-node scripts/init.ts",
"clean": "./scripts/clean.sh",
"hygiene": "node scripts/check-repo-hygiene.js",
"pos:start": "./scripts/local_testnet/start_local_testnet.sh",
"pos:stop": "./scripts/local_testnet/stop_local_testnet.sh",
"pos:clef:setup": "./scripts/local_testnet/setup_clef.sh",
"lint": "turbo run lint --filter=\"./packages/*\" --filter=\"./tools/*\"",
"lint:fix": "turbo run lint:fix --filter=\"./packages/*\" --filter=\"./tools/*\"",
"format": "turbo run format --filter=\"./packages/*\" --filter=\"./tools/*\" && prettier --write ./scripts/**/*.ts",
"test": "turbo run test --filter=\"./packages/*\" --filter=\"./tools/*\" -- --watchman=false",
"test:coverage:unit": "turbo run test:coverage:unit --filter=\"./packages/*\" --filter=\"./tools/*\" -- --watchman=false",
"test:coverage:integration": "turbo run test:coverage:integration --filter=\"./packages/*\" --filter=\"./tools/*\" -- --watchman=false",
"test:unit": "turbo run test:unit --filter=\"./packages/*\" --filter=\"./tools/*\" -- --watchman=false && jest --config=./scripts/jest.config.js --watchman=false",
"test:integration": "turbo run test:integration --filter=\"./packages/*\" --filter=\"./tools/*\"",
"test:e2e:gqrl:http": "./scripts/test-runner.sh gqrl http",
"test:e2e:gqrl:ws": "./scripts/test-runner.sh gqrl ws",
"test:e2e:gqrl:ipc": "./scripts/test-runner.sh gqrl ipc",
"test:e2e:coverage": "./scripts/test-runner.sh coverage",
"test:e2e:mainnet:http": "./scripts/test-runner.sh mainnet http",
"test:e2e:mainnet:ws": "./scripts/test-runner.sh mainnet ws",
"test:e2e:testnet:http": "./scripts/test-runner.sh testnet http",
"test:e2e:testnet:ws": "./scripts/test-runner.sh testnet ws",
"husky:install": "husky install",
"husky:uninstall": "husky uninstall",
"compile:contracts": "node ./scripts/compile_contracts.js && pnpm run format && pnpm run lint:fix",
"release": "multi-semantic-release --ignore-private-packages",
"release:dry-run": "multi-semantic-release --ignore-private-packages --dry-run",
"release:inspect-packages": "node scripts/release/inspect-packages.js",
"release:pack-packages": "node scripts/release/pack-packages.js",
"release:packages": "node scripts/release/packages.js list",
"release:published-versions": "node scripts/release/published-versions.js",
"release:smoke-tarballs": "node scripts/release/smoke-tarballs.js",
"release:touch-packages": "node scripts/release/touch-packages.js",
"doctor": "node scripts/doctor.js",
"audit:supply-chain": "pnpm audit --prod --audit-level high"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "7.1.0",
"@eslint/js": "10.0.1",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/github": "12.0.8",
"@semantic-release/release-notes-generator": "14.1.1",
"@theqrl/eslint-config-base-web3": "workspace:*",
"@theqrl/hypc": "0.0.2",
"@theqrl/qrl-contracts": "0.1.0",
"@types/minimatch": "6.0.0",
"@types/node": "25.9.1",
"assert": "2.1.0",
"buffer": "6.0.3",
"bufferutil": "4.1.0",
"clean-webpack-plugin": "4.0.0",
"conventional-changelog-conventionalcommits": "9.3.1",
"cypress-jest-adapter": "0.1.1",
"declaration-bundler-webpack-plugin": "1.0.3",
"eslint": "10.4.0",
"globals": "17.6.0",
"http-browserify": "1.7.0",
"https-browserify": "1.0.0",
"husky": "9.1.7",
"jest": "30.4.2",
"multi-semantic-release": "3.1.0",
"prettier": "3.8.3",
"process": "0.11.10",
"semantic-release": "25.0.3",
"ts-jest": "29.4.11",
"ts-loader": "9.5.7",
"ts-node": "10.9.2",
"turbo": "2.8.16",
"typedoc": "0.28.19",
"typedoc-plugin-extras": "4.0.1",
"typedoc-plugin-markdown": "4.11.0",
"typedoc-plugin-mdn-links": "5.1.1",
"typescript": "6.0.3",
"utf-8-validate": "6.0.6",
"webpack": "5.107.1",
"webpack-cli": "7.0.2"
},
"packageManager": "pnpm@10.27.0",
"dependencies": {
"webpack-bundle-analyzer": "5.3.0"
}
}