forked from cosmos/cosmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.43 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
{
"name": "@hackbg/cosmjs-esm",
"type": "module",
"description": "Cosmos/CosmWasm SDKs as a monolithic ESM package",
"version": "1.0.0-rc.45",
"license": "AGPL-3.0",
"main": "index.ts",
"contributors": [
"Adam Avramov <[email protected]>",
"Confio OÜ <[email protected]>",
"IOV SAS <[email protected]>",
"Simon Warta <[email protected]>",
"Will Clark <[email protected]>"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/hackbg/cosmjs-esm"
},
"files": [
"build/",
"*.md",
"!*.spec.*",
"!**/testdata/",
"api",
"lib",
"ics23",
"types"
],
"scripts": {
"build": "rm -rf ./build && tsc",
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || pnpm build",
"build:workers": "rm -rf ./build && tsc && tsc -p tsconfig.workers.json",
"check": "time tsc --noEmit",
"coverage": "nyc --reporter=text --reporter=lcov pnpm test --quiet",
"docs": "time typedoc --options typedoc.js",
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
"format-text": "prettier --write \"./*.md\"",
"lint": "eslint --max-warnings 0 \"./**/*.ts\" \"./*.js\"",
"lint-fix": "eslint --fix --max-warnings 0 \"./**/*.ts\" \"./*.js\"",
"pack-web": "pnpm build-or-skip && webpack --mode development --config webpack.web.config.js",
"test": "pnpm build-or-skip && pnpm test-node",
"test-chrome": "pnpm pack-web && karma start --single-run --browsers ChromeHeadless",
"test-edge": "pnpm pack-web && karma start --single-run --browsers Edge",
"test-firefox": "pnpm pack-web && karma start --single-run --browsers Firefox",
"test-node": "ganesha-run jasmine-testrunner.cjs",
"test-safari": "pnpm pack-web && karma start --single-run --browsers Safari",
"release": "pnpm check && pnpm release:faster",
"release:faster": "pnpm ubik release --access public --otp 000000"
},
"dependencies": {
"@hackbg/protobufjs-esm": "workspace:./protobuf.js",
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.3.2",
"@scure/base": "^1.1.3",
"axios": "^0.21.4",
"bn.js": "^5.2.1",
"isomorphic-ws": "^4.0.1",
"libsodium-wrappers-sumo": "^0.7.13",
"long": "^4.0.0",
"pako": "^2.1.0",
"readonly-date": "^1.0.0",
"xstream": "^11.14.0"
},
"devDependencies": {
"@hackbg/ganesha": "^4.2.0",
"@hackbg/ubik": "^4",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/bn.js": "^5.1.5",
"@types/jasmine": "^4.6.2",
"@types/karma-firefox-launcher": "^2.1.4",
"@types/karma-jasmine": "^4.0.5",
"@types/karma-jasmine-html-reporter": "^1.7.3",
"@types/libsodium-wrappers-sumo": "^0.7.8",
"@types/long": "^4.0.2",
"@types/node": "^18.18.9",
"@types/pako": "^1.0.7",
"@types/ws": "^6.0.4",
"buffer": "^6.0.3",
"esm": "^3.2.25",
"glob": "^7.2.3",
"jasmine": "^4.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^1.7.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"readonly-date": "^1.0.0",
"ses": "^0.11.1",
"source-map-support": "^0.5.21",
"ts-node": "^8.10.2",
"typedoc": "^0.27.5",
"typescript": "~5.7.2",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0"
}
}