Files
cyph3rasi bb04d47a29 Release automatic callback setup in SDK 0.2.0
Hop-State: A_06FPARPGMNVEAN3XBVH0QD8
Hop-Proposal: R_06FPARNXMP3DGP5VQGGX4Z8
Hop-Task: T_06FPAR9KH2V5ED7V65JEN00
Hop-Attempt: AT_06FPAR9KH3NZ1CV8RGPJDSG
2026-07-15 03:46:42 -07:00

82 lines
2.0 KiB
JSON

{
"name": "@gnosyslabs/stuffbox-sdk",
"version": "0.2.0",
"description": "Official Stuffbox SDK with framework-neutral APIs and optional React upload helpers",
"packageManager": "pnpm@10.30.3",
"license": "MIT",
"author": "Gnosys Labs <admin@gnosyslabs.xyz>",
"homepage": "https://stuffbox.xyz/developers",
"repository": {
"type": "git",
"url": "https://githop.xyz/GnosysLabs/stuffbox-sdk.git"
},
"bugs": {
"url": "https://githop.xyz/GnosysLabs/stuffbox-sdk/issues"
},
"keywords": [
"stuffbox",
"media",
"uploads",
"storage",
"react",
"typescript"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"THIRD_PARTY_NOTICES.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js",
"default": "./dist/react/index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.build.json --noEmit && tsc -p tsconfig.tests.json",
"typecheck:examples": "tsc -p tsconfig.examples.json --noEmit",
"test": "vitest run",
"lint": "eslint src tests examples",
"verify": "pnpm typecheck && pnpm typecheck:examples && pnpm lint && pnpm test && pnpm build",
"prepublishOnly": "pnpm verify",
"prepack": "npm run build"
},
"peerDependencies": {
"react": "^18.2.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@types/react": "19.1.9",
"eslint": "9.31.0",
"react": "19.2.7",
"typescript": "5.9.3",
"typescript-eslint": "8.64.0",
"vitest": "4.1.10"
},
"engines": {
"node": ">=22.0.0"
}
}