This repository has been archived by the owner on May 7, 2024. It is now read-only.
forked from hashgraph/hedera-nft-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.3 KB
/
package.json
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
{
"name": "@hashgraph/nft-utilities",
"version": "2.4.1",
"description": "NFT Utilities for Hedera Hashgraph",
"author": "Michiel Mulders",
"license": "Apache License",
"bugs": {
"url": "https://github.com/hashgraph/hedera-nft-utilities/issues"
},
"homepage": "https://github.com/hashgraph/hedera-nft-utilities#readme",
"repository": {
"type": "git",
"url": "https://github.com/hashgraph/hedera-nft-utilities.git"
},
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"lint": "eslint . --ext .ts,.js",
"fix": "eslint . --ext .ts,.js --fix",
"test": "jest --config jest.config.ts",
"test:e2e": "jest --config jest.config.e2e.ts",
"test:single": "jest --config jest.config.ts --testPathPattern",
"test:single-e2e": "jest --config jest.config.e2e.ts --testPathPattern",
"test-output": "jest --ci --reporters=default --reporters=jest-junit",
"build": "rm -rf dist/ && npm run fix && npm run build:cjs && npm run build:esm && cp -r src/types dist/types && cp -r src/types dist/cjs/types",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"prettier": {
"printWidth": 140,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"keywords": [
"Hedera",
"Hedera Hashgraph",
"HIP412",
"NFT",
"SDK"
],
"dependencies": {
"@aws-sdk/client-s3": "3.515.0",
"@aws-sdk/lib-storage": "3.515.0",
"@hashgraph/sdk": "^2.41.0",
"axios": "^1.6.7",
"csv-parser": "^3.0.0",
"file-type": "18.3.0",
"formdata-node": "6.0.3",
"json2csv": "6.0.0-alpha.2",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"magic-bytes.js": "^1.8.0",
"mathjs": "^12.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.17",
"@jest/transform": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-junit": "^15.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"zod-error": "^1.5.0"
}
}