-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 4.11 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 4.11 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
{
"name": "Bloxchain",
"version": "1.0.0-alpha.20",
"description": "Library engine for building enterprise grade decentralized permissioned applications",
"type": "module",
"main": "truffle-config.cjs",
"repository": {
"type": "git",
"url": "https://github.com/PracticalParticle/Bloxchain-Protocol.git"
},
"homepage": "https://bloxchain.app/",
"bugs": {
"url": "https://github.com/PracticalParticle/Bloxchain-Protocol/issues",
"email": "security@particlecs.com"
},
"scripts": {
"prepare": "husky",
"test:hardhat": "hardhat test",
"compile:truffle": "truffle compile --config truffle-config.cjs",
"compile:truffle:size": "npm run compile:truffle && npx truffle run contract-size --config truffle-config.cjs",
"compile:hardhat": "hardhat compile",
"compile:foundry": "forge build",
"compile:foundry:size": "forge build --sizes",
"test:foundry": "forge test",
"test:foundry:verbose": "forge test -vvv",
"test:foundry:coverage": "forge coverage",
"test:foundry:fuzz": "forge test --fuzz-runs 10000",
"test:foundry:invariant": "forge test --invariant-runs 1000",
"deploy:truffle": "npx truffle migrate --network development --reset --config truffle-config.cjs && node scripts/extract-abi.cjs",
"deploy:hardhat": "hardhat run scripts/deploy.js",
"deploy:hardhat:foundation": "hardhat run scripts/deployment/deploy-foundation-libraries.js --network sepolia",
"deploy:hardhat:copyblox": "hardhat run scripts/deployment/deploy-example-copyblox.js --network sepolia",
"create-wallet": "node scripts/deployment/create-wallet-copyblox.js",
"test:sanity": "node scripts/sanity/run-all-tests.cjs",
"test:sanity:core": "node scripts/sanity/run-all-tests.cjs --core",
"test:sanity:examples": "node scripts/sanity/run-all-tests.cjs --examples",
"test:sanity:all": "node scripts/sanity/run-all-tests.cjs --all",
"test:sanity-sdk": "npx tsx --tsconfig scripts/sanity-sdk/tsconfig.json scripts/sanity-sdk/run-all-tests.ts",
"test:sanity-sdk:core": "npx tsx --tsconfig scripts/sanity-sdk/tsconfig.json scripts/sanity-sdk/run-all-tests.ts --core",
"test:sanity-sdk:examples": "npx tsx --tsconfig scripts/sanity-sdk/tsconfig.json scripts/sanity-sdk/run-all-tests.ts --examples",
"test:sanity-sdk:all": "npx tsx --tsconfig scripts/sanity-sdk/tsconfig.json scripts/sanity-sdk/run-all-tests.ts --all",
"test:e2e": "npm run deploy:truffle && npm run test:sanity:core && npm run test:sanity-sdk:core",
"extract-abi": "node scripts/extract-abi.cjs",
"release:sync-versions": "node scripts/sync-versions.cjs",
"build:sdk": "cd sdk/typescript && npm run build",
"build:sdk:clean": "cd sdk/typescript && npm run clean && npm run build",
"generate:contracts-lock": "cd package && npm install --package-lock-only",
"release:prepare": "node scripts/release-prepare.cjs",
"publish:contracts": "npm run release:prepare && cd package && npm publish --tag alpha.20",
"publish:sdk": "npm run release:sync-versions && npm run extract-abi && npm run build:sdk && cd sdk/typescript && npm publish --tag alpha.20",
"docgen": "npm run compile:hardhat && cd docgen && npm run docgen",
"docgen:install": "cd docgen && npm install",
"format": "prettier --config .prettierrc --write \"contracts/**/*.sol\"",
"commitlint": "commitlint --edit",
"release:check": "release-please release-pr --repo-url=github.com/PracticalParticle/Bloxchain-Protocol"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts"
],
"author": "Particle Crypto Security",
"license": "MPL-2.0",
"overrides": {
"minimatch": ">=10.2.1"
},
"dependencies": {
"@openzeppelin/contracts": "5.6.1",
"@openzeppelin/contracts-upgradeable": "5.6.1"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@nomicfoundation/hardhat-ethers": "4.0.7",
"@types/node": "25.6.0",
"dotenv": "17.4.1",
"hardhat": "3.4.0",
"husky": "9.1.7",
"prettier": "3.8.2",
"prettier-plugin-solidity": "2.3.1",
"release-please": "17.5.2",
"typescript": "6.0.2",
"viem": "2.47.12"
}
}