-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.12 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.12 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
{
"name": "@junobuild/docker-cli",
"private": true,
"version": "0.3.2",
"description": "A command-line interface to administrate smart contracts in Juno's Docker environment",
"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"
],
"scripts": {
"format": "prettier . --write",
"format:check": "prettier --check .",
"did": "./scripts/did.sh",
"build": "tsc --noEmit && node rmdir.mjs && node esbuild.mjs",
"build:satellite": "CLI_BUILD=satellite npm run build",
"build:console": "CLI_BUILD=console npm run build",
"build:skylab": "CLI_BUILD=skylab npm run build",
"dev": "node rmdir.mjs && NODE_ENV=development node esbuild.mjs",
"lint": "eslint --max-warnings 0 'src/**/*.ts'"
},
"dependencies": {
"@icp-sdk/canisters": "^3.5.2",
"@icp-sdk/core": "^5.2.1",
"@junobuild/admin": "^4.3.3",
"@junobuild/cdn": "^2.5.0",
"@junobuild/cli-tools": "^0.14.0",
"@junobuild/config": "^3.0.0",
"@junobuild/config-loader": "^0.4.11",
"@junobuild/ic-client": "^8.1.3",
"@junobuild/schema": "^1.2.3",
"@junobuild/storage": "^2.4.2",
"atomically": "^2.1.1",
"chokidar": "^5.0.0",
"kleur": "^4.1.5",
"semver": "^7.7.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@icp-sdk/bindgen": "^0.3.0",
"@types/node": "^25.0.8",
"@types/semver": "^7.7.1",
"dotenv": "^17.2.3",
"esbuild": "^0.27.4",
"eslint": "^9.39.2",
"eslint-config-love": "^145.0.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"prettier": "^3.8.0",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junobuild/juno-docker.git",
"directory": "cli"
},
"bugs": {
"url": "https://github.com/junobuild/juno-docker"
},
"homepage": "https://juno.build",
"engines": {
"node": ">=24",
"npm": ">=11.5.1 <12.0.0"
}
}