-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.21 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.21 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
{
"name": "lps-1-reference-implementation",
"version": "1.0.0",
"description": "Literary Protocol Standard v1 (LPS-1) — Deterministic on-chain publishing infrastructure",
"author": "FTH Trading",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FTHTrading/LPS-1-Reference-Implementation.git"
},
"scripts": {
"compile": "node pipeline/compile.js",
"hash": "node pipeline/hash.js",
"merkle": "node pipeline/merkle.js",
"manifest": "node pipeline/manifest.js",
"build": "npm run compile && npm run hash && npm run merkle && npm run manifest",
"deploy:local": "npx hardhat run scripts/deploy-local.js",
"anchor": "npx hardhat run scripts/anchor-edition.js",
"demo": "npx hardhat run scripts/demo.js",
"verify": "node verifier/cli.js --path example-work",
"test": "npx hardhat test",
"test:pipeline": "node test/pipeline.test.js",
"test:all": "npm test && npm run test:pipeline",
"solidity:compile": "npx hardhat compile",
"clean": "npx hardhat clean && rm -rf dist"
},
"dependencies": {},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/contracts": "^4.9.6",
"hardhat": "^2.19.0"
}
}