@hashgraph/nft-utilities
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -20,3 +20,3 @@ /*- | ||
*/ | ||
const { localValidation } = require('../..'); | ||
const { localValidation } = require('../../local-validation'); | ||
@@ -23,0 +23,0 @@ function main() { |
@@ -20,3 +20,3 @@ /*- | ||
*/ | ||
const { Validator, defaultVersion } = require('../..'); | ||
const { Validator } = require('../..'); | ||
@@ -23,0 +23,0 @@ function main() { |
{ | ||
"name": "@hashgraph/nft-utilities", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "NFT Utilities for Hedera Hashgraph", | ||
@@ -8,3 +8,4 @@ "main": "index.js", | ||
"test": "jest", | ||
"test-output": "jest --ci --reporters=default --reporters=jest-junit" | ||
"test-output": "jest --ci --reporters=default --reporters=jest-junit", | ||
"build": "tsc -w" | ||
}, | ||
@@ -26,8 +27,27 @@ "keywords": [ | ||
"axios": "^1.2.2", | ||
"jsonschema": "^1.4.1" | ||
"jsonschema": "^1.4.1", | ||
"typescript": "^5.1.3" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^29.5.2", | ||
"jest": "^29.3.1", | ||
"jest-junit": "^15.0.0" | ||
"jest-junit": "^15.0.0", | ||
"ts-jest": "^29.1.0" | ||
}, | ||
"jest": { | ||
"transform": { | ||
"^.+\\.(ts|tsx)$": "ts-jest" | ||
}, | ||
"testMatch": [ | ||
"**/src/test/**/*.(spec|test).(ts|tsx)" | ||
], | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js", | ||
"jsx", | ||
"json", | ||
"node" | ||
] | ||
} | ||
} |
@@ -19,2 +19,3 @@ <div align="center"> | ||
- **How to build the package** | ||
- **Package: [Token metadata validator](#token-metadata-validator)** | ||
@@ -31,2 +32,12 @@ - **Package: [Local metadata validator](#local-validator)** | ||
## How to build the package? | ||
To build this package, run the below command: | ||
```sh | ||
npm run build | ||
``` | ||
This command will produce a `dist` folder containing the outputted JavaScript files. | ||
## Token metadata validator | ||
@@ -33,0 +44,0 @@ |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
131982
51
2540
444
1
3
4
1
+ Addedtypescript@^5.1.3
+ Addedtypescript@5.7.3(transitive)