filecoin-pin
Version:
IPFS Pinning Service API implementation that pins to Filecoin's PDP service
71 lines (70 loc) • 1.83 kB
JSON
{
"name": "filecoin-pin",
"version": "0.1.0",
"description": "IPFS Pinning Service API implementation that pins to Filecoin's PDP service",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"filecoin-pin": "dist/cli.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"dist/**/*.d.ts.map",
"src/**/*.ts",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.ts daemon",
"start": "node dist/cli.js daemon",
"test": "npm run lint && npm run typecheck && npm run test:unit && npm run test:integration",
"test:unit": "vitest run src/test/unit",
"test:integration": "vitest run src/test/integration",
"test:watch": "vitest",
"lint": "ts-standard 'src/**/*.ts'",
"lint:fix": "ts-standard 'src/**/*.ts' --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FilOzone/filecoin-pin.git"
},
"keywords": [
"ipfs",
"filecoin",
"pinning",
"helia",
"typescript"
],
"author": "Rod Vagg <rod@vagg.org>",
"license": "Apache-2.0 OR MIT",
"bugs": {
"url": "https://github.com/FilOzone/filecoin-pin/issues"
},
"homepage": "https://github.com/FilOzone/filecoin-pin#readme",
"dependencies": {
"@filoz/synapse-sdk": "^0.20.0",
"@ipld/car": "^5.4.2",
"fastify": "^5.4.0",
"helia": "^5.5.0",
"multiformats": "^13.3.7",
"pino": "^9.7.0"
},
"devDependencies": {
"@helia/unixfs": "^5.0.4",
"@ipld/dag-cbor": "^9.2.4",
"@types/node": "^24.1.0",
"ts-standard": "^12.0.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
}
}