-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.89 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
{
"name": "bitcoin-computer",
"version": "0.27.0-beta.1",
"private": true,
"description": "A Trustless Smart Contract System for Bitcoin and Litecoin",
"homepage": "http://bitcoincomputer.io/",
"repository": {
"type": "git",
"url": "https://github.com/bitcoin-computer/monorepo"
},
"author": {
"name": "Clemens Ley",
"email": "clemens@bitcoincomputer.io"
},
"contributors": [
"Clemens Ley",
"Laura Tardivo",
"Vivek Singh"
],
"type": "module",
"bin": {
"bitcoin-computer": "./scripts/install.js"
},
"files": [
"scripts/install.js"
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:node": "docker build -t bcdb/bcn .",
"check:obfuscation": "node ./scripts/check-obfuscation.js",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf {} \\;",
"format": "npm run format --if-present --workspaces",
"sync:legal": "find packages -path '*/node_modules/*' -prune -o -name LEGAL.md -not -path '*/docs/*' -exec cp LEGAL.md {} \\;",
"husky:checks": "npm run check:obfuscation && npm run lint",
"lint": "turbo run lint --concurrency=1 --continue=never",
"lint:fix": "npm run lint --if-present --workspaces -- --fix",
"prepare": "husky",
"test:rerun": "node ./scripts/rerun-failed.js",
"test:turbo": "node ./scripts/run-turbo-tests.js",
"test:turbo:rerun": "npm run test:turbo; npm run test:rerun",
"test:compile:mocha": "npm run build:test --if-present --workspaces",
"test:mocha:all": "npm run test:compile:mocha && BITCOIN_RPC_HOST=127.0.0.1 BCN_CHAIN=LTC BCN_NETWORK=regtest POSTGRES_HOST=127.0.0.1 BITCOIN_RPC_HOST=127.0.0.1 BCN_ZMQ_URL=tcp://127.0.0.1:28332 mocha --config .mocharc.json",
"test:puppeteer:build": "npm run test:puppeteer:build --if-present --workspace=@bitcoin-computer/vite-template",
"prepare:commit": "node ../scripts/prepare-commit.cjs",
"prepare:pr": "node ../scripts/prepare-pr.cjs",
"prepare:release": "node ../scripts/prepare-release.cjs",
"prepublishOnly": "./scripts/check-obfuscation.sh && npm run test",
"test": "npm run test --if-present --workspaces",
"types": "turbo run types --concurrency=1 --continue=never"
},
"dependencies": {
"esbuild": "^0.24.0",
"react-router-dom": "^6.23.1"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.21",
"buffer": "^6.0.3",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"mocha-multi": "^1.1.7",
"path": "^0.12.7",
"ts-node": "^10.9.2",
"turbo": "^2.6.3",
"typescript": "^5.8.3",
"url": "^0.11.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.28.1"
},
"overrides": {
"@docusaurus/utils": {
"jiti": "1.21.7"
},
"@docusaurus/bundler": {
"jiti": "1.21.7"
}
},
"packageManager": "npm@10.2.4"
}