-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "meshjs",
"description": "A quick and easy way to bootstrap your Web3 app using Mesh.",
"homepage": "https://meshjs.dev",
"author": "MeshJS",
"version": "1.9.0-beta.101",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"bin": {
"meshjs": "./bin/meshjs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MeshJS/mesh.git"
},
"bugs": {
"url": "https://github.com/MeshJS/mesh/issues"
},
"keywords": [
"blockchain",
"cardano",
"dapp",
"npx",
"web3"
],
"scripts": {
"clean": "rm -rf .turbo && rm -rf dist && rm -rf node_modules",
"build:scripts": "tsup src/index.ts --format esm,cjs --dts",
"build:scripts:old": "preconstruct build",
"start": "preconstruct watch"
},
"dependencies": {
"@sidan-lab/cardano-bar": "^0.0.7",
"chalk": "5.3.0",
"commander": "12.1.0",
"figlet": "1.7.0",
"got": "14.4.1",
"prompts": "2.4.2",
"tar": "7.2.0"
},
"devDependencies": {
"@preconstruct/cli": "2.8.4",
"@types/figlet": "1.5.8",
"@types/got": "^9.6.12",
"@types/prompts": "2.4.9",
"@types/tar": "6.1.13",
"tsup": "^8.0.2"
},
"files": [
"dist/**"
]
}