-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.83 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.83 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
73
74
75
76
{
"name": "@avail-project/ca-common",
"version": "2.3.0",
"description": "common utilities for CA",
"files": [
"dist"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
}
},
"scripts": {
"build": "npm run clean && tsup",
"test": "npm run build && node --test test/*.test.cjs",
"lint": "eslint",
"clean": "rimraf dist/",
"prepublishOnly": "npm run build",
"release": "release-it",
"prepare": "npm run build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@types/node": "22.19.19",
"@typescript-eslint/eslint-plugin": "8.60.0",
"@typescript-eslint/parser": "8.60.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"globals": "16.5.0",
"npm-run-all": "4.1.5",
"prettier": "3.8.3",
"release-it": "20.0.1",
"rimraf": "6.1.3",
"ts-proto": "2.11.8",
"typescript": "5.9.3",
"tsup": "^8.5.1"
},
"peerDependencies": {
"axios": "1.16.1",
"decimal.js": "10.6.0",
"long": "5.3.2",
"msgpackr": "2.0.2",
"viem": "2.51.0"
},
"dependencies": {
"@bufbuild/protobuf": "2.12.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.47.0",
"tslib": "2.8.1",
"@noble/curves": "1.9.1",
"@noble/hashes": "1.8.0",
"@scure/base": "1.2.6"
},
"overrides": {
"bn.js": "5.2.3",
"flatted": "3.4.2",
"picomatch": "4.0.4",
"minimatch@3": {
"brace-expansion": "1.1.15"
}
},
"publishConfig": {
"provenance": true
},
"repository": {
"url": "git+https://github.com/availproject/ca-common.git"
}
}