@synonymdev/pubky 0.5.4 → 0.6.0-rc.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/README.md +193 -159
- package/index.cjs +1565 -385
- package/index.js +1672 -461
- package/package.json +3 -2
- package/pubky.d.ts +706 -82
- package/pubky_bg.wasm +0 -0
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@synonymdev/pubky",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "Pubky client",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.6.0-rc.2",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
"test": "npm run test-nodejs && npm run test-browser",
|
|
14
14
|
"test-nodejs": "tape test/*.js -cov",
|
|
15
15
|
"test-browser": "browserify test/*.js -p esmify | npx tape-run",
|
|
16
|
-
"
|
|
16
|
+
"test-browser:ci": "browserify test/*.js -p esmify | tape-run --browser electron --electron-arg=--no-sandbox --electron-arg=--disable-gpu",
|
|
17
|
+
"build": "cargo run --bin bundle_npm",
|
|
17
18
|
"prepublishOnly": "npm run build"
|
|
18
19
|
},
|
|
19
20
|
"files": [
|