-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.51 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
56
57
{
"name": "@protocol.land/sync",
"version": "0.6.0",
"description": "Sync git repos to Protocol Land",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"proland-sync": "dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"release": "pnpm run build && changeset publish",
"run": "node dist/index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Protocol Land"
],
"author": "@7i7o",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/labscommunity/protocol-land-sync.git"
},
"homepage": "https://github.com/labscommunity/protocol-land-sync#readme",
"dependencies": {
"@amplitude/analytics-node": "^1.3.4",
"@permaweb/aoconnect": "^0.0.52",
"arbundles": "^0.9.11",
"arweave": "^1.14.4",
"dotenv": "^16.4.1",
"jszip": "^3.10.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.9.4",
"@types/uuid": "^9.0.7",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"pnpm": {
"overrides": {
"avsc": "git+https://github.com/Irys-xyz/avsc.git#csp-fixes"
}
}
}