-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.7 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.7 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
{
"author": "DecentralChain",
"bugs": {
"url": "https://github.com/Decentral-America/oracle-data/issues"
},
"description": "Official TypeScript SDK for parsing, encoding, validating, and diffing oracle data on the DecentralChain blockchain — provider identity, asset verification, and data transaction field utilities",
"devDependencies": {
"@arethetypeswrong/cli": "0.18.2",
"@biomejs/biome": "2.4.7",
"@evilmartians/lefthook": "2.1.3",
"@size-limit/preset-small-lib": "12.0.0",
"@vitest/coverage-v8": "4.0.18",
"fast-check": "4.5.3",
"publint": "0.3.18",
"size-limit": "12.0.0",
"tsdown": "0.21.2",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"engines": {
"node": ">=24"
},
"exports": {
".": {
"default": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Decentral-America"
},
"homepage": "https://github.com/Decentral-America/oracle-data#readme",
"keywords": [
"decentralchain",
"dcc",
"oracle",
"blockchain",
"data",
"data-transaction",
"asset-verification",
"oracle-provider",
"typescript",
"sdk",
"web3",
"crypto"
],
"license": "MIT",
"name": "@decentralchain/oracle-data",
"packageManager": "npm@11.9.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Decentral-America/oracle-data.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: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": "10 kB",
"path": "./dist/index.mjs"
}
],
"type": "module",
"types": "./dist/index.d.mts",
"version": "1.0.1"
}