-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
162 lines (162 loc) · 4.68 KB
/
package.json
File metadata and controls
162 lines (162 loc) · 4.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "filecoin-pin",
"version": "0.20.0",
"description": "Bridge IPFS content to Filecoin Onchain Cloud using familiar tools",
"type": "module",
"packageManager": "pnpm@10.32.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"browser": {
"types": "./dist/index.browser.d.ts",
"default": "./dist/index.browser.js"
},
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./core": {
"browser": {
"types": "./dist/core/browser.d.ts",
"default": "./dist/core/browser.js"
},
"types": "./dist/core/index.d.ts",
"default": "./dist/core/index.js"
},
"./core/car": {
"browser": {
"types": "./dist/core/car/browser.d.ts",
"default": "./dist/core/car/browser.js"
},
"types": "./dist/core/car/index.d.ts",
"default": "./dist/core/car/index.js"
},
"./core/data-set": {
"types": "./dist/core/data-set/index.d.ts",
"default": "./dist/core/data-set/index.js"
},
"./core/payments": {
"types": "./dist/core/payments/index.d.ts",
"default": "./dist/core/payments/index.js"
},
"./core/piece": {
"types": "./dist/core/piece/index.d.ts",
"default": "./dist/core/piece/index.js"
},
"./core/synapse": {
"types": "./dist/core/synapse/index.d.ts",
"default": "./dist/core/synapse/index.js"
},
"./core/upload": {
"types": "./dist/core/upload/index.d.ts",
"default": "./dist/core/upload/index.js"
},
"./core/unixfs": {
"browser": {
"types": "./dist/core/unixfs/browser.d.ts",
"default": "./dist/core/unixfs/browser.js"
},
"types": "./dist/core/unixfs/index.d.ts",
"default": "./dist/core/unixfs/index.js"
},
"./core/utils": {
"types": "./dist/core/utils/index.d.ts",
"default": "./dist/core/utils/index.js"
},
"./version-check": {
"types": "./dist/common/version-check.d.ts",
"default": "./dist/common/version-check.js"
}
},
"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 && node scripts/write-version.mjs",
"dev": "tsx watch src/cli.ts server",
"start": "node dist/cli.js server",
"test": "pnpm run lint && pnpm run typecheck && vitest run",
"test:unit": "vitest run --project unit",
"test:integration": "vitest run --project integration",
"test:browser": "vitest run --project browser",
"test:watch": "vitest",
"lint": "tsc && biome check --no-errors-on-unmatched --files-ignore-unknown=true .",
"lint:fix": "biome check --no-errors-on-unmatched --files-ignore-unknown=true --fix .",
"typecheck": "tsc --noEmit",
"docs": "typedoc",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filecoin-project/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/filecoin-project/filecoin-pin/issues"
},
"homepage": "https://github.com/filecoin-project/filecoin-pin#readme",
"dependencies": {
"@chainsafe/libp2p-noise": "^17.0.0",
"@chainsafe/libp2p-yamux": "^8.0.1",
"@clack/prompts": "^1.0.1",
"@filoz/synapse-core": "^0.3.3",
"@filoz/synapse-sdk": "^0.40.2",
"@helia/block-brokers": "^5.1.3",
"@helia/unixfs": "^7.0.4",
"@ipld/car": "^5.4.2",
"@libp2p/identify": "^4.0.12",
"@libp2p/tcp": "^11.0.12",
"@multiformats/multiaddr": "^13.0.1",
"@multiformats/multiaddr-to-uri": "^12.0.0",
"@sentry/node": "^10.40.0",
"commander": "^14.0.3",
"datastore-core": "^11.0.2",
"fastify": "^5.7.4",
"helia": "^6.0.20",
"interface-blockstore": "^6.0.1",
"interface-store": "^7.0.1",
"it-to-buffer": "^4.0.10",
"libp2p": "^3.1.5",
"multiformats": "^13.4.2",
"p-queue": "^9.1.0",
"picocolors": "^1.1.1",
"pino": "^10.3.1",
"semver": "^7.7.4",
"varint": "^6.0.0",
"viem": "^2.46.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@ipld/dag-cbor": "^9.2.5",
"@types/node": "^25.3.2",
"@types/semver": "^7.7.1",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"blockstore-core": "^6.1.2",
"playwright-chromium": "^1.58.2",
"tsx": "~4.21.0",
"typedoc": "^0.28.17",
"typescript": "~5.9.3",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
}
}