Skip to content

Commit

Permalink
chore: fix semver constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
kravetsone committed Jul 28, 2024
1 parent b2e0dd3 commit cfaefd9
Showing 1 changed file with 48 additions and 51 deletions.
99 changes: 48 additions & 51 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,50 @@
{
"name": "@gramio/autoload",
"version": "1.0.0",
"description": "Autoload commands plugin for GramIO",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"type": "module",
"homepage": "https://github.com/gramiojs/autoload",
"readme": "https://gramio.dev/plugins/official/autoload.html",
"scripts": {
"prepublishOnly": "bunx pkgroll",
"jsr": "bun scripts/release-jsr.ts"
},
"keywords": [
"gramio",
"gramio-plugin",
"telegram",
"autoload",
"nextjs",
"filerouter",
"commander"
],
"devDependencies": {
"@types/bun": "^1.1.6",
"gramio": "^0.0.39",
"pkgroll": "^2.1.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"gramio": "^0.0.39"
},
"files": [
"dist"
],
"dependencies": {
"fdir": "^6.1.1",
"picomatch": "^4.0.2",
"@types/picomatch": "^3.0.0"
}
"name": "@gramio/autoload",
"version": "1.0.1",
"description": "Autoload commands plugin for GramIO",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"type": "module",
"homepage": "https://github.com/gramiojs/autoload",
"readme": "https://gramio.dev/plugins/official/autoload.html",
"scripts": {
"prepublishOnly": "bunx pkgroll"
},
"keywords": [
"gramio",
"gramio-plugin",
"telegram",
"autoload",
"nextjs",
"filerouter",
"commander"
],
"devDependencies": {
"@types/bun": "^1.1.6",
"gramio": "^0.0.39",
"pkgroll": "^2.1.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"gramio": ">=0.0.39 < 1.0.0"
},
"files": ["dist"],
"dependencies": {
"fdir": "^6.1.1",
"picomatch": "^4.0.2",
"@types/picomatch": "^3.0.0"
}
}

0 comments on commit cfaefd9

Please sign in to comment.