@movebridge/codegen 0.1.0 → 0.2.1
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/dist/cli.mjs +0 -0
- package/package.json +53 -53
- package/LICENSE +0 -0
package/dist/cli.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
"name": "@movebridge/codegen",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "Code generation tool for type-safe Movement contract interactions",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"movebridge-gen": "./dist/cli.js"
|
|
10
|
+
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.mjs",
|
|
15
|
+
"require": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --clean",
|
|
23
|
+
"dev": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --watch",
|
|
24
|
+
"clean": "rm -rf dist",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:watch": "vitest"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@movebridge/core": "workspace:*",
|
|
31
|
+
"@aptos-labs/ts-sdk": "^1.26.0",
|
|
32
|
+
"commander": "^11.1.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"tsup": "^8.0.1",
|
|
36
|
+
"typescript": "^5.3.2"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [
|
|
39
|
+
"movement",
|
|
40
|
+
"aptos",
|
|
41
|
+
"codegen",
|
|
42
|
+
"typescript",
|
|
43
|
+
"cli"
|
|
44
|
+
],
|
|
45
|
+
"author": "Aqila Rifti",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "https://github.com/AqilaRifti/MoveBridge",
|
|
50
|
+
"directory": "packages/codegen"
|
|
51
|
+
},
|
|
52
|
+
"homepage": "https://github.com/AqilaRifti/MoveBridge#readme",
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/AqilaRifti/MoveBridge/issues"
|
|
16
55
|
}
|
|
17
|
-
},
|
|
18
|
-
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
],
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"@aptos-labs/ts-sdk": "^1.26.0",
|
|
23
|
-
"commander": "^11.1.0",
|
|
24
|
-
"@movebridge/core": "0.1.0"
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"tsup": "^8.0.1",
|
|
28
|
-
"typescript": "^5.3.2"
|
|
29
|
-
},
|
|
30
|
-
"keywords": [
|
|
31
|
-
"movement",
|
|
32
|
-
"aptos",
|
|
33
|
-
"codegen",
|
|
34
|
-
"typescript",
|
|
35
|
-
"cli"
|
|
36
|
-
],
|
|
37
|
-
"author": "Aqila Rifti",
|
|
38
|
-
"license": "MIT",
|
|
39
|
-
"repository": {
|
|
40
|
-
"type": "git",
|
|
41
|
-
"url": "https://github.com/AqilaRifti/MoveBridge",
|
|
42
|
-
"directory": "packages/codegen"
|
|
43
|
-
},
|
|
44
|
-
"homepage": "https://github.com/AqilaRifti/MoveBridge#readme",
|
|
45
|
-
"bugs": {
|
|
46
|
-
"url": "https://github.com/AqilaRifti/MoveBridge/issues"
|
|
47
|
-
},
|
|
48
|
-
"scripts": {
|
|
49
|
-
"build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --clean",
|
|
50
|
-
"dev": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --watch",
|
|
51
|
-
"clean": "rm -rf dist",
|
|
52
|
-
"typecheck": "tsc --noEmit",
|
|
53
|
-
"test": "vitest run",
|
|
54
|
-
"test:watch": "vitest"
|
|
55
|
-
}
|
|
56
56
|
}
|
package/LICENSE
DELETED
|
File without changes
|