forked from bitcoin-computer/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.86 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.86 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
{
"name": "bitcoin-computer",
"version": "0.26.0-beta.0",
"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": "./scripts/check-obfuscation.sh",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf {} \\;",
"format": "npm run format --if-present --workspaces",
"husky:checks": "npm run check:obfuscation && npm run lint",
"lint": "npm run lint --if-present --workspaces",
"lint:fix": "npm run lint --if-present --workspaces -- --fix",
"prepare": "husky",
"prepublishOnly": "./scripts/check-obfuscation.sh && npm run test",
"test": "npm run test --if-present --workspaces",
"types": "npm run types --if-present --workspaces"
},
"dependencies": {
"@endo/static-module-record": "^1.0.4",
"esbuild": "^0.24.0"
},
"devDependencies": {
"@types/node": "^20.11.21",
"buffer": "^6.0.3",
"eslint": "9.29.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"path": "^0.12.7",
"ts-node": "^10.9.2",
"turbo": "^2.1.3",
"typescript": "^5.8.3",
"url": "^0.11.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.28.1"
},
"packageManager": "npm@10.2.4"
}