-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.44 KB
/
package.json
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
{
"name": "@protocol.land/git-remote-helper",
"version": "0.3.0",
"description": "Protocol Land git remote helper",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"git-remote-proland": "dist/index.js"
},
"scripts": {
"lint": "tsc",
"build": "tsup src/index.ts --format esm",
"release": "pnpm run build && changeset publish"
},
"keywords": [
"git-remote-helper",
"git",
"remote-helper",
"git remote helper"
],
"author": "@7i7o",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/labscommunity/protocol-land-remote-helper#readme",
"repository": {
"type": "git",
"url": "https://github.com/labscommunity/protocol-land-remote-helper.git"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.8.4",
"@types/uuid": "^9.0.5",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@amplitude/analytics-node": "^1.3.4",
"@permaweb/aoconnect": "^0.0.52",
"arbundles": "^0.10.0",
"arweave": "^1.14.4",
"jszip": "^3.10.1",
"node-machine-id": "^1.1.12",
"redstone-api": "^0.4.11",
"uuid": "^9.0.1"
}
}