-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.8 KB
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
61
62
63
64
65
{
"name": "nw-publisher",
"version": "1.3.4",
"description": "Nostr Web Publisher - CLI tool for deploying and managing static websites on Nostr",
"type": "module",
"main": "./nw-publisher.mjs",
"bin": {
"nw-publisher": "nw-publisher.mjs"
},
"files": [
"nw-publisher.mjs",
"src/**/*.mjs",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"postinstall": "echo '\n✅ Nostr Web Publisher installed!\n\nGet started:\n 1. Create .env with NOSTR_SK_HEX and RELAYS\n 2. Create your HTML/CSS/JS files\n 3. nw-publisher deploy .\n\nDocumentation: https://github.com/Shugur-Network/nw-publisher\n'",
"test": "node --test test/cli.test.mjs test/relay.test.mjs",
"test:unit": "node --test test/cli.test.mjs test/relay.test.mjs",
"test:integration": "node test/integration.test.mjs",
"test:manual": "./test/manual-workflow.sh",
"test:all": "npm run test:unit && npm run test:integration",
"test:watch": "node --test --watch",
"test:coverage": "node --test --experimental-test-coverage"
},
"keywords": [
"nostr",
"web",
"static-site",
"decentralized",
"publisher",
"cli",
"website",
"publishing",
"deployment",
"hosting",
"version-control",
"monitoring",
"swiss-army-knife",
"nip-YY"
],
"author": "Shugur <admin@shugur.com>",
"license": "MIT",
"homepage": "https://nweb.shugur.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/Shugur-Network/nw-publisher.git"
},
"bugs": {
"url": "https://github.com/Shugur-Network/nw-publisher/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"dotenv": "^16.4.5",
"mime": "^4.0.4",
"nostr-tools": "^2.7.2",
"undici": "^6.19.8"
},
"devDependencies": {
"@noble/hashes": "^1.3.3"
}
}