@movebridge/react 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/package.json +59 -59
- package/LICENSE +0 -0
package/package.json
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
"name": "@movebridge/react",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"description": "React hooks and components for Movement Network",
|
|
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"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean --external react",
|
|
20
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --external react",
|
|
21
|
+
"clean": "rm -rf dist",
|
|
22
|
+
"typecheck": "tsc --noEmit",
|
|
23
|
+
"test": "vitest run",
|
|
24
|
+
"test:watch": "vitest"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@movebridge/core": "workspace:*"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@testing-library/react": "^14.1.0",
|
|
31
|
+
"@types/react": "^18.2.42",
|
|
32
|
+
"@types/react-dom": "^18.2.17",
|
|
33
|
+
"jsdom": "^23.0.1",
|
|
34
|
+
"react": "^18.2.0",
|
|
35
|
+
"react-dom": "^18.2.0",
|
|
36
|
+
"tsup": "^8.0.1",
|
|
37
|
+
"typescript": "^5.3.2"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": "^18.0.0",
|
|
41
|
+
"react-dom": "^18.0.0"
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"movement",
|
|
45
|
+
"aptos",
|
|
46
|
+
"react",
|
|
47
|
+
"hooks",
|
|
48
|
+
"wallet",
|
|
49
|
+
"web3"
|
|
50
|
+
],
|
|
51
|
+
"author": "Aqila Rifti",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "https://github.com/AqilaRifti/MoveBridge",
|
|
56
|
+
"directory": "packages/react"
|
|
57
|
+
},
|
|
58
|
+
"homepage": "https://github.com/AqilaRifti/MoveBridge#readme",
|
|
59
|
+
"bugs": {
|
|
60
|
+
"url": "https://github.com/AqilaRifti/MoveBridge/issues"
|
|
13
61
|
}
|
|
14
|
-
},
|
|
15
|
-
"files": [
|
|
16
|
-
"dist"
|
|
17
|
-
],
|
|
18
|
-
"dependencies": {
|
|
19
|
-
"@movebridge/core": "0.1.0"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@testing-library/react": "^14.1.0",
|
|
23
|
-
"@types/react": "^18.2.42",
|
|
24
|
-
"@types/react-dom": "^18.2.17",
|
|
25
|
-
"jsdom": "^23.0.1",
|
|
26
|
-
"react": "^18.2.0",
|
|
27
|
-
"react-dom": "^18.2.0",
|
|
28
|
-
"tsup": "^8.0.1",
|
|
29
|
-
"typescript": "^5.3.2"
|
|
30
|
-
},
|
|
31
|
-
"peerDependencies": {
|
|
32
|
-
"react": "^18.0.0",
|
|
33
|
-
"react-dom": "^18.0.0"
|
|
34
|
-
},
|
|
35
|
-
"keywords": [
|
|
36
|
-
"movement",
|
|
37
|
-
"aptos",
|
|
38
|
-
"react",
|
|
39
|
-
"hooks",
|
|
40
|
-
"wallet",
|
|
41
|
-
"web3"
|
|
42
|
-
],
|
|
43
|
-
"author": "Aqila Rifti",
|
|
44
|
-
"license": "MIT",
|
|
45
|
-
"repository": {
|
|
46
|
-
"type": "git",
|
|
47
|
-
"url": "https://github.com/AqilaRifti/MoveBridge",
|
|
48
|
-
"directory": "packages/react"
|
|
49
|
-
},
|
|
50
|
-
"homepage": "https://github.com/AqilaRifti/MoveBridge#readme",
|
|
51
|
-
"bugs": {
|
|
52
|
-
"url": "https://github.com/AqilaRifti/MoveBridge/issues"
|
|
53
|
-
},
|
|
54
|
-
"scripts": {
|
|
55
|
-
"build": "tsup src/index.ts --format cjs,esm --dts --clean --external react",
|
|
56
|
-
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --external react",
|
|
57
|
-
"clean": "rm -rf dist",
|
|
58
|
-
"typecheck": "tsc --noEmit",
|
|
59
|
-
"test": "vitest run",
|
|
60
|
-
"test:watch": "vitest"
|
|
61
|
-
}
|
|
62
62
|
}
|
package/LICENSE
DELETED
|
File without changes
|