@recursyve/deeplinks-client
Version:
Node.js client for Recursyve's Deeplinks API
62 lines (61 loc) • 1.85 kB
JSON
{
"name": "@recursyve/deeplinks-client",
"version": "1.0.0",
"description": "Node.js client for Recursyve's Deeplinks API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.lib.json",
"build:dev": "tsc -p tsconfig.json",
"dev": "tsc --watch -p tsconfig.json",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "npm run lint && npm run format:check && npm run build",
"publish-package": "npm run build && npm publish . --access public",
"publish-package:beta": "npm run publish-package -- --tag beta --access public",
"publish-package:dry-run": "npm run publish-package -- --dry-run"
},
"keywords": [
"deeplinks",
"api",
"client",
"nodejs"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/deeplinks-client.git"
},
"bugs": {
"url": "https://github.com/your-org/deeplinks-client/issues"
},
"homepage": "https://github.com/your-org/deeplinks-client#readme",
"dependencies": {
"axios": "^1.10.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.5",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}