-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.31 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.31 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "bvc-eth",
"version": "1.2.8",
"description": "Blockchain Version Control - Decentralized version control system powered by blockchain and IPFS",
"main": "bin/bvc.js",
"bin": {
"bvc": "bin/bvc.js",
"bvc-minimal": "bin/bvc-minimal.js"
},
"scripts": {
"test": "npx hardhat test",
"test:all": "./test-all-features.sh",
"test:security": "./scripts/security-audit.sh",
"compile": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js --network sepolia",
"deploy-local": "npx hardhat run scripts/deploy.js --network localhost",
"deploy-mainnet": "npx hardhat run scripts/deploy.js --network mainnet",
"verify": "npx hardhat verify --network sepolia",
"verify-mainnet": "npx hardhat verify --network mainnet",
"node": "npx hardhat node",
"balance": "npx hardhat run scripts/check-balance.js --network sepolia",
"balance-local": "npx hardhat run scripts/check-balance.js --network localhost",
"balance-mainnet": "npx hardhat run scripts/check-balance.js --network mainnet",
"info": "npx hardhat run scripts/contract-info.js --network sepolia",
"info-local": "npx hardhat run scripts/contract-info.js --network localhost",
"info-mainnet": "npx hardhat run scripts/contract-info.js --network mainnet",
"check-setup": "node scripts/check-sepolia-setup.js",
"config-validate": "node lib/config/manager.js",
"config-secure": "node -e \"const ConfigManager = require('./lib/config/manager'); new ConfigManager().generateSecureTemplate()\"",
"gas-report": "npx hardhat test --gas-reporter",
"coverage": "npx hardhat coverage",
"lint": "eslint lib/ bin/ scripts/ --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"precommit": "npm run lint && npm run test && npm run test:security",
"cli:minimal": "ln -sf bin/bvc-minimal.js bin/bvc",
"cli:full": "ln -sf bin/bvc.js bin/bvc",
"postinstall": "node scripts/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lviffy/Blockchain-Version-Control.git"
},
"keywords": [
"blockchain",
"version-control",
"git",
"ipfs",
"decentralized",
"ethereum",
"cli"
],
"author": "Lviffy",
"license": "MIT",
"type": "commonjs",
"files": [
"bin/",
"lib/",
"contracts/BVC.sol",
"contracts/contract-address.json",
"scripts/postinstall.js",
"README.md",
"BVC_COMMAND_GUIDE.md",
"QUICK_START.md",
"USAGE_EXAMPLES.md",
"COST_OPTIMIZATION.md",
"SEPOLIA_DEPLOYMENT.md"
],
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/Lviffy/BVC/issues"
},
"homepage": "https://github.com/Lviffy/BVC#readme",
"dependencies": {
"boxen": "^8.0.1",
"bvc-eth": "^1.2.8",
"chalk": "^5.6.0",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"ethers": "^5.8.0",
"figlet": "^1.8.2",
"fs-extra": "^11.3.1",
"gradient-string": "^3.0.0",
"inquirer": "^12.9.4",
"ora": "^8.2.0",
"terminal-kit": "^3.1.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"chai": "^6.0.1",
"dotenv": "^17.2.2",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.26.3",
"mocha": "^11.7.2"
}
}