-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.24 KB
/
package.json
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": "@junobuild/cli",
"version": "0.1.2",
"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": {
"@dfinity/agent": "^2.1.3",
"@dfinity/auth-client": "^2.1.3",
"@dfinity/candid": "^2.1.3",
"@dfinity/ic-management": "^6.0.1",
"@dfinity/identity": "^2.1.3",
"@dfinity/principal": "^2.1.3",
"@junobuild/admin": "^0.0.61",
"@junobuild/cli-tools": "^0.0.16",
"@junobuild/config-loader": "^0.0.7",
"@junobuild/core": "^0.1.0",
"@junobuild/did-tools": "^0.0.5",
"@junobuild/utils": "^0.0.27",
"conf": "^13.0.1",
"open": "^10.1.0",
"ora": "^8.1.1",
"portfinder": "^1.0.32",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"terminal-link": "^3.0.0"
},
"devDependencies": {
"@junobuild/config": "^0.0.17",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"dotenv": "^16.4.5",
"esbuild": "^0.24.0",
"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.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.5.4"
},
"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": ">=20"
}
}