npm-registry-sdk
Version:
A fully type-safe client library for the npm registry API.
55 lines (54 loc) • 1.59 kB
JSON
{
"name": "npm-registry-sdk",
"version": "1.2.1",
"description": "A fully type-safe client library for the npm registry API.",
"author": "Flavio Del Grosso",
"license": "ISC",
"type": "module",
"main": "dist/main.js",
"files": [
"dist"
],
"keywords": [
"npm",
"registry",
"nodejs",
"search",
"package",
"api",
"client",
"typescript"
],
"homepage": "https://github.com/flaviodelgrosso/npm-registry-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/flaviodelgrosso/npm-registry-sdk.git"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"prepare": "husky",
"check": "biome check --fix ./src/**/*.ts",
"test": "c8 --100 node --test",
"test:unit": "c8 --100 node --test test/*.test.ts",
"test:integration": "node --test test/integration/*.test.ts",
"test:lcov": "c8 --100 --reporter=lcov node --test test/*.test.ts",
"release": "standard-version",
"major": "npm run release -- --release-as major",
"minor": "npm run release -- --release-as minor",
"patch": "npm run release -- --release-as patch",
"push-release": "git push --follow-tags origin master"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^22.15.17",
"c8": "^10.1.3",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "^5.8.3"
}
}