-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.65 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
{
"name": "@archwayhq/arch3.js",
"version": "0.7.5",
"description": "The all-in-one library for your awesome Archway dApp",
"homepage": "https://docs.archway.io",
"repository": "github:archway-network/arch3.js",
"keywords": [
"archway",
"cosmos",
"cosmjs",
"cosmosjs",
"cosmwasm",
"tendermint",
"atom",
"wasm",
"smart-contracts",
"blockchain",
"dapp",
"dapps",
"nft",
"tooling",
"web3"
],
"author": "Archway Network (https://archway.io)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/archway-network/arch3.js/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"workspaces": [
"packages/*"
],
"files": [
"build",
"./*.md",
"./LICENSE"
],
"main": "build/index.js",
"types": "build/index.d.js",
"exports": {
".": "./build/index.js",
"./*": "./build/*.js"
},
"scripts": {
"postinstall": "husky install",
"prepack": "pinst --disable && yarn run build:all",
"postpack": "pinst --enable",
"clean": "rimraf ./build",
"clean:all": "yarn workspaces foreach --all --parallel --verbose run clean",
"build": "yarn clean && tsc --build",
"build:all": "yarn workspaces foreach --all --topological-dev --parallel --verbose run build",
"test": "jest",
"test:watch": "yarn test --watch",
"test:all": "yarn workspaces foreach --all --parallel --verbose run test --passWithNoTests",
"lint": "eslint ./src --ext .js,.cjs,.ts --no-error-on-unmatched-pattern",
"lint:fix": "yarn run lint --fix",
"lint:sarif": "yarn run lint --format @microsoft/sarif --output-file $(basename $npm_package_name).eslint-results.sarif",
"lint:all": "yarn workspaces foreach --all --parallel --verbose run lint",
"lint:fix:all": "yarn workspaces foreach --all --parallel --verbose run lint:fix",
"lint:sarif:all": "yarn workspaces foreach --all --parallel --verbose run lint:sarif",
"docs": "typedoc",
"docs:all": "yarn workspaces foreach --all --parallel --verbose run docs",
"publish:all": "yarn workspaces foreach --all --topological --no-private --verbose npm publish"
},
"lint-staged": {
"*.ts": [
"yarn run lint:fix:all --cache"
]
},
"resolutions": {
"@cosmjs/amino": "^0.32.2",
"@cosmjs/cosmwasm-stargate": "^0.32.2",
"@cosmjs/math": "^0.32.2",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@cosmjs/tendermint-rpc": "^0.32.2"
},
"dependencies": {
"@archwayhq/arch3-core": "workspace:^",
"@archwayhq/arch3-proto": "workspace:^"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@yarnpkg/sdks": "^3.0.0",
"conventional-changelog-cli": "^4.1.0",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"pinst": "^3.0.0",
"prettier": "^3.0.3",
"prettier-eslint": "^16.1.2",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "yarn@4.0.1"
}