timefi-sdk 0.1.1 → 0.1.2
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 +26 -18
package/package.json
CHANGED
|
@@ -1,14 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "timefi-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Official JavaScript SDK for TimeFi Protocol - Time-locked vaults on Stacks blockchain",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
7
8
|
"files": [
|
|
8
9
|
"dist",
|
|
9
10
|
"README.md",
|
|
10
11
|
"LICENSE"
|
|
11
12
|
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "vite build",
|
|
15
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
16
|
+
"prepublishOnly": "npm run build"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"stacks",
|
|
20
|
+
"bitcoin",
|
|
21
|
+
"clarity",
|
|
22
|
+
"defi",
|
|
23
|
+
"time-lock",
|
|
24
|
+
"sdk",
|
|
25
|
+
"web3",
|
|
26
|
+
"typescript"
|
|
27
|
+
],
|
|
28
|
+
"author": {
|
|
29
|
+
"name": "AdekunleBamz",
|
|
30
|
+
"url": "https://github.com/AdekunleBamz"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT",
|
|
12
33
|
"repository": {
|
|
13
34
|
"type": "git",
|
|
14
35
|
"url": "git+https://github.com/AdekunleBamz/timefi-sdk.git"
|
|
@@ -20,22 +41,9 @@
|
|
|
20
41
|
"publishConfig": {
|
|
21
42
|
"access": "public"
|
|
22
43
|
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
},
|
|
27
|
-
"keywords": [
|
|
28
|
-
"stacks",
|
|
29
|
-
"bitcoin",
|
|
30
|
-
"clarity",
|
|
31
|
-
"defi",
|
|
32
|
-
"time-lock"
|
|
33
|
-
],
|
|
34
|
-
"author": "AdekunleBamz",
|
|
35
|
-
"license": "MIT",
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@stacks/network": "^6.13.0",
|
|
38
|
-
"@stacks/transactions": "^6.14.0"
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"@stacks/transactions": "^6.0.0",
|
|
46
|
+
"@stacks/network": "^6.0.0"
|
|
39
47
|
},
|
|
40
48
|
"devDependencies": {
|
|
41
49
|
"vite": "^5.0.0"
|