-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
136 lines (126 loc) · 4.54 KB
/
package.json
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
127
128
129
130
131
132
133
134
135
136
{
"name": "@hackbg/fadroma",
"type": "module",
"main": "index.node.ts",
"browser": "index.ts",
"version": "2.0.0-rc.24",
"license": "AGPL-3.0-only",
"keywords": [ "cosmwasm", "scrt", "secret network", "interchain", "tendermint", "namada", "cosmos" ],
"description": "Universal client for several distributed computing networks.",
"repository": { "type": "git", "url": "https://github.com/hackbg/fadroma" },
"files": [
"!*",
"LICENSE",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"TROUBLESHOOTING.md",
"MAINTAINERS.md",
"README.md",
"*.ts",
"!*.test.*",
"Dockerfile",
"assets/banner2.svg"
],
"scripts": {
"check": "tsc --noEmit",
"ci": "node --version && npm --version && pnpm --version && pwd && ls -al && pnpm cloc && pnpm clean && pnpm check && pnpm cov all && pnpm ubik --dry compile && ls -al",
"clean": "rm -rf .ubik *.dist.*",
"cloc": "cloc --verbose=2 --fullpath --not-match-d=node_modules --not-match-f=pnpm-lock.yaml --exclude-dir=.github,.husky,ensuite,cosmjs-esm,secretjs-esm,coverage,state .",
"cov": "time ensuite-cov -r text -r lcov -- index.test.ts",
"cov:fast": "ensuite-cov index.test.ts --parallel",
"doc": "typedoc --disableGit --sourceLinkTemplate 'https://github.com/hackbg/fadroma/tree/v2/{path}#L{line}' --json docs.json && ./docs.ts",
"docs:dev": "ensuite-dev",
"docs:render": "ensuite-render",
"docs:typedoc": "typedoc",
"fadroma": "FADROMA_PROJECT=./examples fadroma",
"prepare": "husky install || true",
"test": "time ensuite index.test.ts",
"test:fast": "ensuite index.test.ts --parallel",
"release": "time sh -c 'pnpm clean && pnpm i && pnpm check && pnpm cov all && ubik release --otp 123123'",
"release:fast": "time sh -c 'pnpm clean && pnpm i && pnpm check && ubik release --otp 123123'",
"release:faster": "time sh -c 'pnpm clean && pnpm i && ubik release --otp 123123 --no-git-checks'"
},
"dependencies": {
"@hackbg/4mat": "workspace:*",
"@hackbg/cmds": "workspace:*",
"@hackbg/conf": "workspace:*",
"@hackbg/dump": "workspace:*",
"@hackbg/file": "workspace:*",
"@hackbg/hide": "workspace:*",
"@hackbg/into": "workspace:*",
"@hackbg/logs": "workspace:*",
"@hackbg/oops": "workspace:*",
"@hackbg/port": "workspace:*",
"@hackbg/repo": "workspace:*",
"case": "^1.6.3",
"dotenv": "^16.3.1",
"prompts": "^2.4.2"
},
"peerDependencies": {
"@hackbg/ganesha": "*",
"@fadroma/cw": "workspace:*",
"@fadroma/scrt": "workspace:*",
"@fadroma/namada": "workspace:*",
"@fadroma/create": "workspace:*",
"@fadroma/deploy": "workspace:*",
"@fadroma/stub": "workspace:*"
},
"peerDependenciesMeta": {
"@hackbg/ganesha": { "optional": true },
"@fadroma/cw": { "optional": true },
"@fadroma/scrt": { "optional": true },
"@fadroma/namada": { "optional": true },
"@fadroma/create": { "optional": true },
"@fadroma/deploy": { "optional": true },
"@fadroma/stub": { "optional": true }
},
"devDependencies": {
"@hackbg/docs": "workspace:^",
"@hackbg/fadroma": "workspace:^",
"@fadroma/compile": "workspace:^",
"@fadroma/devnet": "workspace:^",
"@fadroma/fixtures": "link:fixtures",
"@fadroma/oci": "workspace:^",
"@hackbg/ensuite": "workspace:^",
"@hackbg/ubik": "workspace:^",
"@hackbg/ganesha": "*",
"@ganesha/esbuild": "workspace:^",
"@fadroma/cw": "workspace:*",
"@fadroma/scrt": "workspace:*",
"@fadroma/namada": "workspace:*",
"@fadroma/create": "workspace:*",
"@fadroma/deploy": "workspace:*",
"@fadroma/stub": "workspace:*",
"@hackbg/dump": "workspace:^",
"@types/dockerode": "^3.3.23",
"@types/js-yaml": "^4.0.9",
"@types/node": "latest",
"@types/prettyjson": "^0.0.30",
"@types/prompts": "^2.4.8",
"@types/secure-random": "^1.1.3",
"typescript": "^5.7.2",
"typedoc": "0.25.13",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"express": "^4.20.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"google-protobuf",
"@types/react",
"react",
"react-dom",
"vitepress",
"ts-node",
"@algolia/client-search"
],
"allowedVersions": {
"typescript": "^5"
}
}
},
"lint-staged": {
"*.ts": "pnpm check && git add pnpm-lock.yaml && pnpm cov"
}
}