@jsm-mit/rabbit-motoko-package 0.1.0 → 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 +32 -29
package/package.json
CHANGED
|
@@ -1,32 +1,35 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
2
|
+
"name": "@jsm-mit/rabbit-motoko-package",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Wrapper TypeScript package for Rabbit Motoko IC actor using @dfinity/agent.",
|
|
5
|
+
"license": "ISC",
|
|
6
|
+
"author": "",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/",
|
|
18
|
+
"declarations/"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsc --build",
|
|
22
|
+
"clean": "rm -rf dist",
|
|
23
|
+
"prepare": "npm run build",
|
|
24
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"typescript": "^5.5.4"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@dfinity/agent": "^3.4.3",
|
|
31
|
+
"@icp-sdk/core": "^latest",
|
|
32
|
+
"@icp-sdk/agent": "^latest",
|
|
33
|
+
"@icp-sdk/candid": "^latest"
|
|
14
34
|
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist/",
|
|
18
|
-
"declarations/"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsc --build",
|
|
22
|
-
"clean": "rm -rf dist",
|
|
23
|
-
"prepare": "npm run build",
|
|
24
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
25
|
-
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"typescript": "^5.5.4"
|
|
28
|
-
},
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@dfinity/agent": "^3.4.3"
|
|
31
|
-
}
|
|
32
35
|
}
|