-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 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
56
57
58
59
60
{
"name": "nsite-cli",
"version": "0.1.12",
"author": "florian",
"description": "nsite CLI - publish your site to NOSTR and blossom servers",
"main": "dist/cli.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/flox1an/nsite-cli.git"
},
"bugs": {
"url": "https://github.com/flox1an/nsite-cli/issues"
},
"homepage": "https://github.com/flox1an/nsite-cli",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && chmod +x dist/cli.js",
"format": "prettier -w src/**.ts"
},
"keywords": [
"nostr",
"blossom",
"website",
"publish"
],
"engines": {
"npm": ">=8.0.0 ",
"node": ">=20.0.0"
},
"license": "MIT",
"dependencies": {
"@noble/hashes": "^1.5.0",
"@nostr-dev-kit/ndk": "^2.10.0",
"axios": "^1.7.7",
"blossom-client-sdk": "^1.1.1",
"commander": "^12.1.0",
"debug": "^4.3.7",
"dotenv": "^16.4.5",
"inquirer": "^12.0.0",
"inquirer-autocomplete-standalone": "^0.8.1",
"mime-types": "^2.1.35",
"node-fetch": "^3.3.2",
"nostr-tools": "^2.7.2",
"proxy-agent": "^6.4.0",
"websocket-polyfill": "^1.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.5.5",
"@types/ws": "^8.5.12",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"bin": {
"nsite-cli": "dist/cli.js"
}
}