movementkit-cli 1.0.0
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.
- package/README.md +168 -0
- package/bin/mk.js +4 -0
- package/dist/index.js +4129 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "movementkit-cli",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "CLI tool for bootstrapping and updating Movement Kit projects for Movement blockchain development",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/phatdev-hehe/movementkit-cli.git"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public",
|
|
12
|
+
"registry": "https://registry.npmjs.org"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"mk": "bin/mk.js",
|
|
16
|
+
"movementkit": "bin/mk.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"bin/mk.js",
|
|
20
|
+
"dist/index.js"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "bun run src/index.ts",
|
|
24
|
+
"build": "bun build src/index.ts --outdir dist --target node",
|
|
25
|
+
"compile": "bun build src/index.ts --compile --outfile mk",
|
|
26
|
+
"compile:binary": "bun build src/index.ts --compile --outfile bin/mk",
|
|
27
|
+
"test": "bun test",
|
|
28
|
+
"test:watch": "bun test --watch",
|
|
29
|
+
"lint": "biome check .",
|
|
30
|
+
"lint:fix": "biome check --fix .",
|
|
31
|
+
"format": "biome format --write .",
|
|
32
|
+
"typecheck": "tsc --noEmit"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"cli",
|
|
36
|
+
"movementkit",
|
|
37
|
+
"movement",
|
|
38
|
+
"blockchain",
|
|
39
|
+
"move",
|
|
40
|
+
"aptos",
|
|
41
|
+
"dapp",
|
|
42
|
+
"smart-contract",
|
|
43
|
+
"web3"
|
|
44
|
+
],
|
|
45
|
+
"author": "Movement Kit",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"engines": {
|
|
48
|
+
"bun": ">=1.3.2",
|
|
49
|
+
"node": ">=18.0.0"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@clack/prompts": "^0.7.0",
|
|
53
|
+
"@octokit/rest": "^22.0.0",
|
|
54
|
+
"cac": "^6.7.14",
|
|
55
|
+
"cli-progress": "^3.12.0",
|
|
56
|
+
"compare-versions": "^6.1.1",
|
|
57
|
+
"extract-zip": "^2.0.1",
|
|
58
|
+
"fs-extra": "^11.2.0",
|
|
59
|
+
"ignore": "^5.3.2",
|
|
60
|
+
"minimatch": "^10.1.1",
|
|
61
|
+
"ora": "^8.0.0",
|
|
62
|
+
"picocolors": "^1.1.1",
|
|
63
|
+
"tar": "^7.4.3",
|
|
64
|
+
"zod": "^3.23.8"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@biomejs/biome": "^1.9.4",
|
|
68
|
+
"@types/bun": "latest",
|
|
69
|
+
"@types/cli-progress": "^3.11.6",
|
|
70
|
+
"@types/fs-extra": "^11.0.4",
|
|
71
|
+
"@types/node": "^22.10.1",
|
|
72
|
+
"typescript": "^5.7.2"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|