-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
145 lines (145 loc) · 4.36 KB
/
package.json
File metadata and controls
145 lines (145 loc) · 4.36 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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"author": "DecentralChain",
"bugs": {
"url": "https://github.com/Decentral-America/node-api-js/issues"
},
"dependencies": {
"@decentralchain/bignumber": "^1.2.1",
"@decentralchain/ts-lib-crypto": "^2.0.1",
"@decentralchain/ts-types": "^2.0.1",
"typed-ts-events": "^3.0.1"
},
"description": "TypeScript/JavaScript HTTP client for the DecentralChain node REST API",
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@biomejs/biome": "2.4.7",
"@decentralchain/transactions": "^5.0.1",
"@evilmartians/lefthook": "2.1.3",
"@size-limit/preset-small-lib": "12.0.0",
"@types/node": "25.3.3",
"@vitest/coverage-v8": "4.0.18",
"publint": "0.3.18",
"size-limit": "12.0.0",
"tsdown": "0.21.2",
"typescript": "5.9.3",
"undici-types": "7.22.0",
"vitest": "4.0.18"
},
"engines": {
"node": ">=24"
},
"exports": {
".": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
},
"./api-node/addresses": {
"default": "./dist/api-node/addresses/index.mjs",
"types": "./dist/api-node/addresses/index.d.mts"
},
"./api-node/alias": {
"default": "./dist/api-node/alias/index.mjs",
"types": "./dist/api-node/alias/index.d.mts"
},
"./api-node/assets": {
"default": "./dist/api-node/assets/index.mjs",
"types": "./dist/api-node/assets/index.d.mts"
},
"./api-node/blocks": {
"default": "./dist/api-node/blocks/index.mjs",
"types": "./dist/api-node/blocks/index.d.mts"
},
"./api-node/debug": {
"default": "./dist/api-node/debug/index.mjs",
"types": "./dist/api-node/debug/index.d.mts"
},
"./api-node/eth": {
"default": "./dist/api-node/eth/index.mjs",
"types": "./dist/api-node/eth/index.d.mts"
},
"./api-node/leasing": {
"default": "./dist/api-node/leasing/index.mjs",
"types": "./dist/api-node/leasing/index.d.mts"
},
"./api-node/node": {
"default": "./dist/api-node/node/index.mjs",
"types": "./dist/api-node/node/index.d.mts"
},
"./api-node/peers": {
"default": "./dist/api-node/peers/index.mjs",
"types": "./dist/api-node/peers/index.d.mts"
},
"./api-node/rewards": {
"default": "./dist/api-node/rewards/index.mjs",
"types": "./dist/api-node/rewards/index.d.mts"
},
"./api-node/transactions": {
"default": "./dist/api-node/transactions/index.mjs",
"types": "./dist/api-node/transactions/index.d.mts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Decentral-America"
},
"homepage": "https://github.com/Decentral-America/node-api-js#readme",
"keywords": [
"decentralchain",
"dcc",
"node-api",
"blockchain",
"rest-api",
"sdk",
"typescript"
],
"license": "MIT",
"module": "./dist/index.mjs",
"name": "@decentralchain/node-api-js",
"packageManager": "npm@11.9.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Decentral-America/node-api-js.git"
},
"scripts": {
"build": "tsdown",
"bulletproof": "biome check --write . && npm run typecheck && npm run test",
"bulletproof:check": "biome check . && npm run typecheck && npm run test",
"check:exports": "attw --pack . --profile esm-only",
"check:publint": "publint",
"check:size": "size-limit",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check --write .",
"lint:check": "biome check .",
"lint:fix": "biome check --write .",
"postpublish": "git push",
"postversion": "npm publish",
"prepack": "npm run build",
"prepare": "lefthook install",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"validate": "npm audit --audit-level=high && npm run lint:check && npm run typecheck && npm run test && npm run build && npm run check:publint && npm run check:exports && npm run check:size"
},
"sideEffects": false,
"size-limit": [
{
"limit": "105 kB",
"path": "./dist/index.mjs"
}
],
"type": "module",
"types": "./dist/index.d.mts",
"version": "2.0.1"
}