forked from junobuild/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.45 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.45 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
{
"name": "@junobuild/cli",
"version": "0.0.65",
"description": "The Juno command-line interface",
"author": "David Dal Busco (https://daviddalbusco.com)",
"license": "MIT",
"type": "module",
"bin": {
"juno": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist/index.js",
"README.md",
"LICENSE",
"templates"
],
"scripts": {
"format": "prettier . --write",
"format:check": "prettier --check .",
"build": "tsc --noEmit && node rmdir.mjs && node esbuild.mjs",
"dev": "node rmdir.mjs && NODE_ENV=development node esbuild.mjs",
"lint": "eslint --max-warnings 0 \"src/**/*\""
},
"dependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@dfinity/agent": "^1.3.0",
"@dfinity/candid": "^1.3.0",
"@dfinity/identity": "^1.3.0",
"@dfinity/principal": "^1.3.0",
"@junobuild/admin": "^0.0.48",
"@junobuild/cli-tools": "^0.0.9",
"@junobuild/config": "^0.0.6",
"@junobuild/core-peer": "^0.0.14",
"@junobuild/utils": "^0.0.21",
"conf": "^12.0.0",
"file-type": "^19.0.0",
"listr": "^0.14.3",
"mime-types": "^2.1.35",
"minimatch": "^9.0.4",
"node-fetch": "^3.3.2",
"open": "^10.1.0",
"ora": "^8.0.1",
"portfinder": "^1.0.32",
"prompts": "^2.4.2",
"semver": "^7.6.0",
"terminal-link": "^3.0.0"
},
"devDependencies": {
"@types/listr": "^0.14.9",
"@types/mime-types": "^2.1.4",
"@types/minimatch": "^5.1.2",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"dotenv": "^16.4.5",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junobuild/cli.git"
},
"bugs": {
"url": "https://github.com/junobuild/cli"
},
"keywords": [
"blockchain-as-a-service",
"baas",
"dapps",
"dapps-development",
"internet computer",
"smart-contracts",
"web3",
"cli"
],
"homepage": "https://juno.build",
"engines": {
"node": ">=18"
}
}