-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.54 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
{
"name": "@meshsdk/midnight-contracts-wizard",
"version": "1.9.0-beta.94",
"description": "Create a new Midnight contracts project with selected smart contracts",
"main": "dist/index.js",
"bin": {
"midnight-contracts-wizard": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"dev": "tsc --watch",
"lint": "eslint",
"pack": "npm pack",
"test": "jest",
"start": "node dist/index.js",
"install-cli": "node dist/install.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"midnight",
"contracts",
"blockchain",
"privacy",
"zk",
"zero-knowledge",
"cli",
"generator"
],
"author": "MeshJS Team",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.12",
"ora": "^5.4.1"
},
"devDependencies": {
"@meshsdk/configs": "*",
"@types/fs-extra": "^11.0.0",
"@types/inquirer": "^9.0.0",
"@types/node": "^20.19.23",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"contracts",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/MeshJS/mesh.git",
"directory": "packages/midnight-contracts-wizard"
},
"bugs": {
"url": "https://github.com/MeshJS/mesh/issues"
},
"homepage": "https://meshjs.dev/"
}