forked from cosmos/cosmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.72 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
{
"name": "cosmjs-monorepo-root",
"description": "Transaction codec and client to communicate with any wasmd blockchain",
"private": true,
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
"license": "Apache-2.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/",
"*.md",
"!*.spec.*",
"!**/karma-bundle/",
"!**/testdata/"
],
"repository": {
"type": "git",
"url": "https://github.com/cosmos/cosmjs"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"packages/*"
],
"scripts": {
"format": "yarn workspaces foreach --all --topological-dev --parallel --verbose run format",
"format-text": "prettier --write \"./*.md\" \"./docs/*.md\" && yarn workspaces foreach --all --topological-dev --parallel --verbose run format-text",
"format-shell": "shfmt -w scripts packages",
"lint": "eslint --max-warnings 0 .",
"lint-fix": "eslint --max-warnings 0 --fix .",
"test": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test",
"test-firefox": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test-firefox",
"test-chrome": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test-chrome",
"coverage": "yarn workspaces foreach --all --topological-dev --parallel --verbose run coverage",
"build": "yarn workspaces foreach --all --topological-dev --parallel --verbose run build",
"docs": "yarn workspaces foreach --all --topological-dev --parallel --verbose run docs",
"pack-web": "yarn workspaces foreach --all --topological-dev --parallel --verbose run pack-web",
"publish-next": "yarn workspaces foreach --all --no-private exec yarn npm publish --tag next",
"publish-backports": "yarn workspaces foreach --all --no-private exec yarn npm publish --tag backports-unsorted",
"publish-latest": "yarn workspaces foreach --all --no-private exec yarn npm publish"
},
"devDependencies": {
"@cosmjs/amino": "workspace:^",
"@cosmjs/cosmwasm": "workspace:^",
"@cosmjs/crypto": "workspace:^",
"@cosmjs/encoding": "workspace:^",
"@cosmjs/proto-signing": "workspace:^",
"@cosmjs/stargate": "workspace:^",
"@eslint/js": "^9.32.0",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"typescript": "~5.9"
},
"packageManager": "yarn@4.9.2"
}