Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,134 changes: 307 additions & 1,827 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/TBC20/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"lint:fix": "eslint src test --ext .ts,.tsx --fix",
"start": "node build/src/main.js",
"test": "mocha --config .mocharc.json",
"test:show": "npm run test 2>&1 | tee TBC20-test.log && open TBC20-test.log",
"test:show": "npm run test 2>&1 | tee TBC20-test.log; if [ ${PIPESTATUS[0]} -ne 0 ]; then open TBC20-test.log; fi",
"types": "tsc --noEmit"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/TBC721/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lint": "eslint --fix . --ext .ts,.tsx --ignore-pattern build/",
"start": "node build/src/main.js",
"test": "mocha --config .mocharc.json",
"test:show": "npm run test 2>&1 | tee tbc721-test.log && open tbc721-test.log",
"test:show": "npm run test 2>&1 | tee tbc721-test.log; if [ ${PIPESTATUS[0]} -ne 0 ]; then open tbc721-test.log; fi",
"types": "tsc --noEmit"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/chess-contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"lint": "eslint .",
"start": "node build/src/index.js",
"test": "mocha --config .mocharc.json",
"test:show": "npm run test 2>&1 | tee chess-contracts.log && open chess-contracts.log",
"test:show": "npm run test 2>&1 | tee chess-contracts.log; if [ ${PIPESTATUS[0]} -ne 0 ]; then open chess-contracts.log; fi",
"types": "tsc --noEmit"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/explorer/.env.remote.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MNEMONIC=travel upgrade inside soda birth essence junk merit never twenty system opinion
GENERATE_SOURCEMAP=false
VITE_PORT=1032
VITE_URL=http://127.0.0.1:1031
VITE_URL=https://rltc.node.bitcoincomputer.io
VITE_CHAIN=LTC
VITE_NETWORK=regtest
2 changes: 1 addition & 1 deletion packages/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"prepublishOnly": "../../scripts/check-obfuscation.sh",
"publish-lib": "npm publish",
"test": "mocha --require ts-node/register 'test/**/*.ts'",
"test:show": "npm run test 2>&1 | tee lib-test.log && open lib-test.log"
"test:show": "npm run test 2>&1 | tee lib-test.log; if [ ${PIPESTATUS[0]} -ne 0 ]; then open lib-test.log; fi"
},
"dependencies": {
"@babel/parser": "^7.23.9",
Expand Down
2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"start:bcn": "node dist/bcn.es.mjs",
"start:sync": "node dist/bcn.sync.es.mjs",
"test": "mocha --config .mocharc.json",
"test:show": "npm run test 2>&1 | tee node-test.log && open node-test.log",
"test:show": "npm run test 2>&1 | tee node-test.log; if [ ${PIPESTATUS[0]} -ne 0 ]; then open node-test.log; fi",
"up": "docker compose -f docker-compose.yml up"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/nodejs-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint": "eslint --fix . --ext .ts,.tsx",
"start": "node build/src/main.js",
"test": "mocha --config .mocharc.json",
"test:show": "npm run test 2>&1 | tee nodejs-template.log && open nodejs-template.log",
"test:show": "npm run test 2>&1 | tee nodejs-template.log; if [ ${PIPESTATUS[0]} -ne 0 ]; then open nodejs-template.log; fi",
"types": "tsc --noEmit"
},
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/swap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"lint:fix": "eslint --fix . --ext .ts,.tsx --ignore-pattern build/",
"start": "node build/src/main.js",
"test": "mocha --config .mocharc.json",
"test:show": "npm run test 2>&1 | tee swap.log && open swap.log",
"test:show": "npm run test 2>&1 | tee swap.log; if [ ${PIPESTATUS[0]} -ne 0 ]; then open swap.log; fi",

"types": "tsc --noEmit"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vite-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"start": "vite",
"test": "vitest run",
"test:dev": "vitest",
"test:show": "npm run test 2>&1 | tee vite-template-test.log && open vite-template-test.log",
"test:show": "npm run test 2>&1 | tee vite-template-test.log; if [ ${PIPESTATUS[0]} -ne 0 ]; then open vite-template-test.log; fi",
"types": "tsc --noEmit"
},
"dependencies": {
Expand Down