@kyaki/witness 0.1.0 → 0.1.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 +9 -16
package/package.json
CHANGED
|
@@ -1,33 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kyaki/witness",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "KYA external witness — a durable, independent co-signing party; gossip monitor, pollination, accountability, and SSRF-safe transport.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
|
-
"types": "./
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": "./package.json"
|
|
14
15
|
},
|
|
15
16
|
"files": ["dist", "src"],
|
|
16
17
|
"scripts": {
|
|
17
18
|
"build": "tsc -p tsconfig.build.json"
|
|
18
19
|
},
|
|
19
20
|
"publishConfig": {
|
|
20
|
-
"access": "public"
|
|
21
|
-
"types": "./dist/index.d.ts",
|
|
22
|
-
"exports": {
|
|
23
|
-
".": {
|
|
24
|
-
"types": "./dist/index.d.ts",
|
|
25
|
-
"import": "./dist/index.js",
|
|
26
|
-
"default": "./dist/index.js"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
21
|
+
"access": "public"
|
|
29
22
|
},
|
|
30
23
|
"dependencies": {
|
|
31
|
-
"@kyaki/core": "^0.1.
|
|
24
|
+
"@kyaki/core": "^0.1.1"
|
|
32
25
|
}
|
|
33
26
|
}
|