-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (78 loc) · 3.67 KB
/
package.json
File metadata and controls
79 lines (78 loc) · 3.67 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "2500-donkeys",
"version": "1.0.0",
"description": "The 2,500 Donkeys — A Web3 Literary Protocol by Kidd James",
"author": "Kidd James",
"license": "MIT",
"private": true,
"scripts": {
"compile": "node build/compile.js",
"hash": "node build/hash.js",
"manifest": "node build/manifest.js",
"build": "node build/compile.js && node build/merkle.js && node build/hash.js && node build/manifest.js",
"build:deterministic": "node build/compile.js --deterministic && node build/hash.js && node build/manifest.js",
"build:reproducible": "node build/compile.js --reproducible && node build/hash.js --reproducible && node build/manifest.js",
"genesis": "npm run build",
"hh:compile": "npx hardhat compile",
"hh:test": "npx hardhat test",
"deploy:amoy": "npx hardhat run web3/scripts/deploy.js --network amoy",
"deploy:polygon": "npx hardhat run web3/scripts/deploy.js --network polygon",
"verify": "npx hardhat run web3/scripts/verify.js --network polygon",
"lps:verify": "node verify/lps-verify.js",
"lps:verify:json": "node verify/lps-verify.js --json",
"lps:proof": "node verify/lps-verify.js --proof",
"audit:chain": "npx hardhat run web3/scripts/audit.js --network polygon",
"pub:placeholders": "node publishing/generate-placeholders.js",
"pub:images": "node images/generate-images.js",
"pub:images:cover": "node images/generate-images.js --cover",
"pub:images:chapters": "node images/generate-images.js --chapters",
"pub:images:dry": "node images/generate-images.js --dry-run",
"pub:epub": "node publishing/build-epub.js",
"pub:pdf": "node publishing/build-pdf.js",
"pub:cover": "node publishing/build-cover.js",
"pub:all": "node publishing/build-epub.js && node publishing/build-pdf.js && node publishing/build-cover.js",
"pub:kdp": "node publishing/build-kdp.js",
"pub:kdp:check": "node publishing/build-kdp.js --check-only",
"publish": "npm run build && npm run pub:all",
"audio:voices": "node audio/render.js --list-voices",
"audio:dry": "node audio/render.js --dry-run",
"audio:render": "node audio/render.js",
"audio:hash": "node audio/hash-audio.js",
"audio:verify": "node audio/hash-audio.js --verify",
"audio:all": "node audio/render.js && node audio/hash-audio.js",
"stories:merkle": "node stories/stories-merkle.js",
"stories:pdf": "node stories/build-stories-pdf.js",
"stories:epub": "node stories/build-stories-epub.js",
"stories:build": "node stories/stories-merkle.js && node stories/build-stories-pdf.js && node stories/build-stories-epub.js",
"stories:audio:dry": "python stories/narrate-stories-kokoro.py --dry-run",
"stories:audio:render": "python stories/narrate-stories-kokoro.py",
"stories:audio:hash": "node stories/hash-stories-audio.js",
"stories:audio:verify": "node stories/hash-stories-audio.js --verify",
"stories:audio:all": "python stories/narrate-stories-kokoro.py && node stories/hash-stories-audio.js",
"stories:anchor": "node stories/anchor-stories.js",
"stories:anchor:execute": "node stories/anchor-stories.js --execute",
"stories:all": "node stories/stories-merkle.js && node stories/build-stories-pdf.js && node stories/build-stories-epub.js"
},
"keywords": [
"literary-protocol",
"web3-publishing",
"ipfs",
"satire",
"finance",
"gold-trade",
"esg",
"carbon-credits",
"blockchain",
"polygon"
],
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^4.9.6",
"dotenv": "^17.3.1",
"ethers": "^6.16.0",
"hardhat": "^2.28.6",
"marked": "^17.0.2",
"puppeteer": "^24.37.3",
"sharp": "^0.34.5"
}
}