airbitz-cli
Advanced tools
Comparing version 1.0.0 to 1.0.1
# airbitz-cli | ||
## 1.0.1 (2023-07-31) | ||
- fixed: Modernize package structure to work with the latest Node.js and TypeScript versions. | ||
## 1.0.0 (2023-07-31) | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "airbitz-cli", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Airbitz CLI tool", | ||
@@ -17,24 +17,31 @@ "homepage": "https://airbitz.co", | ||
], | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./lib/index.mjs", | ||
"require": "./lib/index.js" | ||
"import": { | ||
"types": "./src/index.d.ts", | ||
"default": "./lib/airbitz-cli.js" | ||
}, | ||
"require": { | ||
"types": "./src/index.d.ts", | ||
"default": "./lib/cjs/airbitz-cli.js" | ||
} | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "lib/index.js", | ||
"module": "lib/airbitz-cli.js", | ||
"types": "./lib/src/index.d.ts", | ||
"bin": "bin/airbitz-cli", | ||
"main": "./lib/cjs/airbitz-cli.js", | ||
"module": "./lib/airbitz-cli.js", | ||
"types": "./src/index.d.ts", | ||
"bin": "./bin/airbitz-cli", | ||
"files": [ | ||
"bin/*", | ||
"CHANGELOG.md", | ||
"lib/*", | ||
"LICENSE", | ||
"package.json", | ||
"README.md" | ||
"/bin/", | ||
"/CHANGELOG.md", | ||
"/lib/", | ||
"/LICENSE", | ||
"/package.json", | ||
"/README.md" | ||
], | ||
"scripts": { | ||
"clean": "rimraf bin lib", | ||
"build": "rollup -c", | ||
"build": "rollup -c && echo '{\"type\":\"commonjs\"}' > lib/cjs/package.json", | ||
"fix": "eslint . --fix", | ||
@@ -87,5 +94,4 @@ "lint": "eslint .", | ||
"rollup": "^2.21.0", | ||
"rollup-plugin-mjs-entry": "^0.1.1", | ||
"typescript": "^4.1.2" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
122957
22
Yes
2228