-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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
{
"name": "@protocol.land/sync-github",
"version": "0.0.8",
"description": "Sync Protocol.Land repos to GitHub",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"proland-sync-github": "dist/index.js"
},
"scripts": {
"lint": "tsc",
"build": "tsup src/index.ts --format esm",
"release": "pnpm run build && changeset publish"
},
"keywords": [
"Protocol.Land",
"arweave",
"git"
],
"author": "@pawanpaudel93",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/labscommunity/protocol-land-sync-github#readme",
"repository": {
"type": "git",
"url": "https://github.com/labscommunity/protocol-land-sync-github.git"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "^20.11.17",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@amplitude/analytics-node": "^1.3.5",
"arweave": "^1.14.4",
"dotenv": "^16.4.2",
"jszip": "^3.10.1",
"node-machine-id": "^1.1.12",
"warp-contracts": "^1.4.34"
}
}