-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.91 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.91 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": "blockscout-cli",
"version": "0.1.9",
"description": "Restful Blockscout Apis SDK with axios for NodeJS",
"author": "sc-connect",
"keywords": [
"blockscout",
"cli",
"client",
"api",
"web3",
"nodejs",
"nextjs",
"react",
"nestjs",
"sdk"
],
"repository": {
"type": "git",
"url": "https://github.com/sc-connect/blockscout-cli"
},
"homepage": "https://github.com/sc-connect/blockscout-cli#readme",
"bugs": {
"url": "https://github.com/sc-connect/blockscout-cli/issues"
},
"license": "MIT",
"contributors": [
"aaop3734",
"danialdinh957"
],
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build:esm": "swc src --copy-files --config-file --strip-leading-paths .swcrc.esm.json -d dist/esm",
"build:cjs": "swc src --copy-files --config-file --strip-leading-paths .swcrc.cjs.json -d dist/cjs",
"build:types": "tsc --emitDeclarationOnly --noCheck --outDir dist/esm && tsc --emitDeclarationOnly --noCheck --outDir dist/cjs",
"build": "yarn build:esm && yarn build:cjs && yarn build:types",
"prebuild": "rm -rf ./dist",
"version-package": "changeset version",
"release-package": "yarn build && changeset publish"
},
"publishConfig": {
"access": "public",
"provenance": true,
"typesVersion": {
"*": {
"index": [
"./dist/esm/index.d.ts"
]
}
}
},
"engines": {
"node": ">= 14"
},
"dependencies": {
"axios": "^1.7.9"
},
"devDependencies": {
"@blockscout/bens-types": "1.5.5",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.28.1",
"@swc/cli": "0.6.0",
"@swc/core": "1.11.9",
"@types/node": "20.17.19",
"abitype": "1.0.8",
"prettier": "3.5.1",
"tsc-alias": "1.8.11",
"typescript": "5.8.2",
"viem": "2.23.14"
}
}