verdantly
Version:
Node.js client for accessing plant species and variety data from the Verdantly API
60 lines (59 loc) • 1.42 kB
JSON
{
"name": "verdantly",
"version": "1.0.3",
"description": "Node.js client for accessing plant species and variety data from the Verdantly API",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"pack": "npm pack",
"publish:beta": "npm run build && npm version prerelease --preid=beta && npm publish --tag beta",
"publish:latest": "npm run build && npm version patch && npm publish --access public",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"keywords": [
"verdantly",
"plants",
"gardening",
"vegetables",
"fruits",
"herbs",
"flowers",
"trees",
"api-client",
"typescript"
],
"author": "Verdantly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/verdantlyx/ts-verdantly.git"
},
"bugs": {
"url": "https://github.com/verdantlyx/ts-verdantly/issues"
},
"homepage": "https://github.com/verdantlyx/ts-verdantly#readme",
"sideEffects": false,
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"prettier": "^3.5.3",
"tsup": "^7.2.0",
"typescript": "^5.2.0"
},
"publishConfig": {
"access": "public"
}
}