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