@provablehq/wasm 0.6.9

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 ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@provablehq/wasm",
3
+ "version": "0.6.9",
4
+ "description": "Wasm build for the SDK",
5
+ "collaborators": [
6
+ "The Aleo Team <hello@aleo.org>"
7
+ ],
8
+ "license": "GPL-3.0",
9
+ "type": "module",
10
+ "main": "./dist/index.js",
11
+ "browser": "./dist/index.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": "./dist/index.js",
15
+ "./worker.js": "./dist/worker.js"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "LICENSE.md",
20
+ "README.md"
21
+ ],
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/ProvableHQ/sdk.git"
25
+ },
26
+ "keywords": [
27
+ "Aleo",
28
+ "Blockchain",
29
+ "Zero Knowledge",
30
+ "ZK"
31
+ ],
32
+ "bugs": {
33
+ "url": "https://github.com/ProvableHQ/sdk/issues"
34
+ },
35
+ "homepage": "https://github.com/ProvableHQ/sdk#readme",
36
+ "scripts": {
37
+ "build": "rimraf dist && rollup -c rollup.config.js && cpr js/types dist && rimraf dist/wasm*",
38
+ "prepublish": "yarn build",
39
+ "test": "node test.js"
40
+ },
41
+ "devDependencies": {
42
+ "@wasm-tool/rollup-plugin-rust": "^2.4.2",
43
+ "cpr": "^3.0.1",
44
+ "rimraf": "^5.0.1",
45
+ "rollup": "^3.27.2"
46
+ }
47
+ }