@arcblock/arcli 0.0.1-beta-2023-12-25-16-31-077

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +52 -0
  2. package/dist/index.js +89 -0
  3. package/package.json +105 -0
package/package.json ADDED
@@ -0,0 +1,105 @@
1
+ {
2
+ "name": "@arcblock/arcli",
3
+ "version": "0.0.1-beta-2023-12-25-16-31-077",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "bin": {
8
+ "arcli": "./dist/index.js"
9
+ },
10
+ "author": {
11
+ "name": "skypesky",
12
+ "email": "2565978507@qq.com",
13
+ "url": "https://github.com/skypesky"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/skypesky/@ArcBlock/arcli"
18
+ },
19
+ "homepage": "https://github.com/skypesky/@ArcBlock/arcli",
20
+ "keywords": [
21
+ "ipfs",
22
+ "md5",
23
+ "github",
24
+ "backup",
25
+ "restore"
26
+ ],
27
+ "files": [
28
+ "dist"
29
+ ],
30
+ "scripts": {
31
+ "reinstall": "rimraf node_modules && pnpm install",
32
+ "predebug": "npm run build",
33
+ "debug": "node ./dist/index.js",
34
+ "lint": "eslint src/**/*.ts",
35
+ "lint:fix": "npm run lint -- --fix",
36
+ "test": "jest --forceExit --detectOpenHandles",
37
+ "coverage": "npm run test -- --coverage",
38
+ "clean": "rimraf dist",
39
+ "prebuild": "npm run clean",
40
+ "build": "node esbuild.config.cjs",
41
+ "build:watch": "npm run build -- -w",
42
+ "deploy": "npm run build && npm uninstall -g @ArcBlock/arcli && npm install -g . -f",
43
+ "deploy:remote": "npm uninstall -g @ArcBlock/arcli && npm install -g @ArcBlock/arcli",
44
+ "verify": "npm run lint && npm run test",
45
+ "show:version": "npm show @ArcBlock/arcli version",
46
+ "bump-version": "zx --quiet scripts/bump-version.mjs"
47
+ },
48
+ "dependencies": {
49
+ "@octokit/rest": "^20.0.2",
50
+ "@types/hosted-git-info": "^3.0.2",
51
+ "chalk": "~4",
52
+ "commander": "^9.4.1",
53
+ "current-os": "^1.1.0",
54
+ "dayjs": "^1.11.7",
55
+ "fast-glob": "^3.3.2",
56
+ "fs-extra": "^10.1.0",
57
+ "get-folder-size": "^4.0.0",
58
+ "git-remote-origin-url": "3.1.0",
59
+ "git-repo-info": "^2.1.1",
60
+ "got": "^14.0.0",
61
+ "hasha": "^5.2.2",
62
+ "hosted-git-info": "^6.1.1",
63
+ "ipfs-only-hash": "^4.0.0",
64
+ "joi": "^17.9.1",
65
+ "js-yaml": "^4.1.0",
66
+ "lodash": "^4.17.21",
67
+ "lowdb": "^6.1.1",
68
+ "multiformats": "^12.1.3",
69
+ "node-fetch": "^3.3.2",
70
+ "open": "^8.4.0",
71
+ "p-all": "^5.0.0",
72
+ "prettier": "^3.1.1",
73
+ "pretty-ms": "^8.0.0",
74
+ "prompts": "^2.4.2",
75
+ "shelljs.exec": "^1.1.8",
76
+ "simple-git": "^3.21.0",
77
+ "url-join": "4.0.1",
78
+ "xbytes": "^1.8.0"
79
+ },
80
+ "devDependencies": {
81
+ "@types/chalk": "^2.2.0",
82
+ "@types/commander": "^2.12.2",
83
+ "@types/fs-extra": "^9.0.13",
84
+ "@types/jest": "^29.2.2",
85
+ "@types/js-yaml": "^4.0.5",
86
+ "@types/lodash": "^4.14.187",
87
+ "@types/node": "^18.11.7",
88
+ "@types/open": "^6.2.1",
89
+ "@types/prompts": "^2.4.2",
90
+ "@types/shelljs.exec": "^1.1.0",
91
+ "@types/url-join": "^4.0.1",
92
+ "@typescript-eslint/eslint-plugin": "^5.46.0",
93
+ "@typescript-eslint/parser": "^5.46.0",
94
+ "bumpp": "^9.2.1",
95
+ "esbuild": "^0.16.4",
96
+ "eslint": "^8.29.0",
97
+ "jest": "^29.3.1",
98
+ "jest-environment-jsdom": "^29.3.1",
99
+ "rimraf": "^3.0.2",
100
+ "ts-jest": "^29.0.3",
101
+ "ts-node": "^10.9.1",
102
+ "typescript": "^4.9.4",
103
+ "zx": "^7.2.3"
104
+ }
105
+ }