-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.19 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.19 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
{
"name": "@txnlab/nfd-fetch",
"version": "0.0.1",
"description": "Fetch library for NFDomains (NFD)",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/client.gen.d.ts",
"default": "./lib/client.gen.js"
},
"./sdk": {
"types": "./lib/sdk.gen.d.ts",
"default": "./lib/sdk.gen.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"src",
"README.md"
],
"keywords": [
"algorand",
"nfd",
"nfdomains",
"blockchain",
"domains",
"fetch",
"rpc"
],
"author": "TxnLab Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TxnLab/nfd-sdk.git",
"directory": "packages/fetch"
},
"bugs": {
"url": "https://github.com/TxnLab/nfd-sdk/issues"
},
"homepage": "https://github.com/TxnLab/nfd-sdk/packages/fetch#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"build": "vite build && tsc-alias -p tsconfig.lib.json && publint --strict",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"fetch:openapi": "tsx scripts/fetch-openapi.ts",
"generate": "openapi-ts"
},
"dependencies": {
"@hey-api/client-fetch": "^0.8.1",
"algosdk": "^3.2.0",
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@hey-api/openapi-ts": "^0.64.5",
"@types/node": "^22.13.9",
"@types/node-fetch": "^2.6.12",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^3.0.7",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"publint": "^0.3.6",
"tsc-alias": "^1.8.13",
"tsx": "^4.19.3",
"type-fest": "^4.37.0",
"vite": "^6.2.0",
"vite-bundle-analyzer": "^0.18.1",
"vite-plugin-dts": "^4.5.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
}
}