-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "pinner-deploy-action",
"description": "GitHub Action to deploy content to IPFS via Pinner",
"version": "0.1.23",
"author": "Lume Web",
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.2",
"keywords": [
"actions",
"ipfs",
"pinner"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"bundle": "vp fmt && vp pack",
"local-action": "npx @github/local-action . src/main.ts .env",
"package": "rm -rf ./dist && vp pack",
"test": "vp test",
"all": "vp fmt && vp lint && vp test && vp pack"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@chainsafe/libp2p-noise": "^17.0.0",
"@chainsafe/libp2p-yamux": "^8.0.1",
"@libp2p/identify": "^4.1.9",
"@libp2p/interface": "^3.2.4",
"@libp2p/peer-id-factory": "^4.2.4",
"@libp2p/ping": "^3.1.8",
"@libp2p/tcp": "^11.0.23",
"@lumeweb/pinner": "^0.1.23",
"libp2p": "^3.3.5"
},
"devDependencies": {
"@achingbrain/nat-port-mapper": "^4.0.5",
"@achingbrain/ssdp": "^4.2.4",
"@faker-js/faker": "^10.5.0",
"@github/local-action": "^7.0.1",
"@libp2p/upnp-nat": "^4.0.23",
"@libp2p/webrtc": "^6.0.26",
"@types/node": "^26.1.0",
"@voidzero-dev/vite-plus-core": "^0.2.2",
"msw": "^2.4.0",
"node-datachannel": "^0.32.3",
"typescript": "^6.0.3",
"vite-plus": "^0.2.2",
"vitest": "^4.1.9"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
}