-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.3 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
{
"name": "vx3",
"version": "0.1.1",
"description": "A CLI tool for vx3 smart contracts platform",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": "Nknight AMAMIYA@nk4dev <nknighta@varius.technology>",
"files": [
"dist",
"packages/template",
"packages/hardhat",
"packages/components",
"packages/react-template",
"packages/vue-template",
"packages/vxc"
],
"homepage": "https://vx.nknighta.me",
"license": "MIT",
"keywords": [
"web3",
"vx3",
"cli",
"smart-contracts"
],
"bin": {
"vx3": "dist/src/cli.js"
},
"scripts": {
"build": "rimraf dist && tsc",
"prepare": "npm run build",
"clean": "rimraf dist",
"dev": "node dist/src/cli.js",
"start": "npm run build && npx vx serve --debug",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"build:vxc": "tsc -p packages/vxc/tsconfig.json",
"pretest": "npm run build:vxc && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"hh": "hardhat --config packages/hardhat/hardhat.config.ts",
"hh:compile": "hardhat --config packages/hardhat/hardhat.config.ts compile",
"hh:test": "hardhat --config packages/hardhat/hardhat.config.ts test",
"hh:node": "hardhat --config packages/hardhat/hardhat.config.ts node",
"hh:deploy": "hardhat --config packages/hardhat/hardhat.config.ts run packages/hardhat/scripts/deploy.ts --network localhost",
"docs": "npx serve docs"
},
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.16.5",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/supertest": "^6.0.3",
"ethers": "^6.15.0",
"globals": "^17.4.0",
"minimatch": "^10.0.3",
"prettier": "^3.5.3",
"solc": "^0.8.30"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.8",
"hardhat": "^2.22.0",
"jest": "^30.0.5",
"react-dom": "^19.2.0",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
},
"publishConfig": {
"access": "public"
}
}