@microfox/github
Version:
GitHub SDK for Microfox
60 lines (59 loc) • 1.25 kB
JSON
{
"name": "@microfox/github",
"version": "2.0.0",
"description": "GitHub SDK for Microfox",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint \"./**/*.ts*\"",
"prettier-check": "prettier --check \"./**/*.ts*\""
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"octokit": "^4.1.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@microfox/tsconfig": "*",
"@types/node": "^18",
"tsup": "^8",
"typescript": "5.6.3"
},
"peerDependencies": {
"octokit": ">=4.1.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/microfox-ai/microfox",
"repository": {
"type": "git",
"url": "git+https://github.com/microfox-ai/microfox.git"
},
"bugs": {
"url": "https://github.com/microfox-ai/microfox/issues"
},
"keywords": [
"microfox",
"sdk",
"typescript",
"github"
]
}