packages/bin/package.json
{
"name": "@packasso/bin",
"version": "2.0.0",
"description": "bin",
"keywords": [
"preset",
"bin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/qiwi/packasso.git"
},
"bugs": {
"url": "https://github.com/qiwi/packasso/issues"
},
"homepage": "https://qiwi.github.io/packasso",
"dependencies": {
"@packasso/core": "workspace:*"
},
"type": "module",
"exports": "./src/main/ts/index.ts",
"license": "MIT",
"publishConfig": {
"bin": {
"packasso-bin": "./target/esm/bin.mjs"
},
"type": "module",
"main": "./target/cjs/index.cjs",
"module": "./target/esm/index.mjs",
"types": "./target/esm/index.d.ts",
"exports": {
".": {
"require": "./target/cjs/index.cjs",
"import": "./target/esm/index.mjs",
"types": "./target/esm/index.d.ts"
}
},
"files": [
"target/cjs/**/*",
"target/esm/**/*",
"target/buildstamp.json"
],
"access": "public"
}
}