-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 878 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 878 Bytes
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
{
"name": "anchr-cli",
"version": "0.1.0",
"description": "Anchr — deploy static frontends to IPFS and resolve via Solana Name Service (.sol) domains",
"type": "module",
"bin": {
"anchr": "./bin/anchr.js"
},
"scripts": {
"start": "node bin/anchr.js",
"lint": "eslint .",
"test": "node --test tests/*.test.js"
},
"license": "MIT",
"keywords": ["solana", "ipfs", "sns", "web3", "hosting", "cli", "storacha"],
"repository": {
"type": "git",
"url": "https://github.com/mrphatom/Anchr.git"
},
"dependencies": {
"@storacha/client": "*",
"@filebase/sdk": "*",
"@bonfida/spl-name-service": "^3.0.19",
"@solana/web3.js": "*",
"files-from-path": "*",
"commander": "*"
},
"devDependencies": {
"eslint": "*",
"@eslint/js": "*",
"@solana/spl-token": "*"
},
"engines": {
"node": ">=18"
}
}