-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "sushibar.cash",
"version": "0.0.5",
"description": "SushiBar on Bitcoin Cash",
"main": "dist/src/index.js",
"type": "module",
"author": "mainnet-pat",
"license": "MIT",
"private": true,
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"build": "yarn clean && yarn compile",
"build:test": "yarn clean:test && yarn compile:test",
"clean": "rm -rf ./dist",
"clean:test": "rm -rf ./dist-test",
"compile": "tsx tasks/index.ts compile && tsc -p tsconfig.json",
"compile:test": "tsx tasks/index.ts compile && tsc -p tsconfig.test.json",
"lint": "eslint . --ext .ts --ignore-path ../../.eslintignore",
"prepublishOnly": "yarn test && yarn lint",
"pretest": "yarn build:test",
"test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --forceExit",
"postinstall": "patch-package || true",
"watch": "tsc -p tsconfig.json --watch"
},
"dependencies": {},
"peerDependencies": {
"cashscript": "^0.11.3",
"ipfs-only-hash": "^4.0.0",
"mainnet-js": "^2.7.14"
},
"optionalDependencies": {},
"devDependencies": {
"@bch-wc2/privkey-connector": "^0.0.8",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"cashc": "^0.11.3",
"cashscript": "^0.11.3",
"ipfs-only-hash": "^4.0.0",
"jest": "^29.7.0",
"mainnet-js": "^2.7.14",
"patch-package": "^8.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"url-join": "^5.0.0"
}
}