-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 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
67
68
69
70
71
72
{
"name": "@avail-project/ca-common",
"version": "2.1.0",
"description": "common utilities for CA",
"files": [
"dist"
],
"sideEffects": [
"./src/_polyfill.ts",
"./dist/esm/_polyfill.js",
"./dist/cjs/_polyfill.js"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"build": "run-s clean build:esm build:cjs",
"build:esm": "tsc --project tsconfig.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint",
"clean": "rimraf dist/",
"prepublishOnly": "npm run build",
"release": "release-it",
"prepare": "npm run build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"@types/node": "^22.16.3",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"release-it": "^19.2.3",
"rimraf": "^6.0.1",
"ts-proto": "^2.7.5",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@cosmjs/proto-signing": "^0.34.0",
"@cosmjs/stargate": "^0.34.0",
"axios": "^1.10.0",
"decimal.js": "^10.6.0",
"long": "^5.3.2",
"msgpackr": "^1.11.4",
"viem": "^2.31.7"
},
"dependencies": {
"@bufbuild/protobuf": "^2.6.0",
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "0.15.0",
"browser-headers": "^0.4.1",
"es-toolkit": "^1.39.7",
"tslib": "^2.8.1"
},
"publishConfig": {
"provenance": true
},
"repository": {
"url": "git+https://github.com/availproject/ca-common.git"
}
}