@dashevo/wasm-sdk 2.1.0-dev.5
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 +241 -0
- package/dist/raw/wasm_sdk.d.ts +1110 -0
- package/dist/raw/wasm_sdk.js +4585 -0
- package/dist/raw/wasm_sdk.no_url.js +4585 -0
- package/dist/raw/wasm_sdk_bg.wasm +0 -0
- package/dist/raw/wasm_sdk_bg.wasm.d.ts +238 -0
- package/dist/sdk.d.ts +1110 -0
- package/dist/sdk.js +79 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dashevo/wasm-sdk",
|
|
3
|
+
"version": "2.1.0-dev.5",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/sdk.js",
|
|
6
|
+
"types": "./dist/sdk.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/sdk.d.ts",
|
|
10
|
+
"import": "./dist/sdk.js"
|
|
11
|
+
},
|
|
12
|
+
"./raw": {
|
|
13
|
+
"types": "./dist/raw/wasm_sdk.d.ts",
|
|
14
|
+
"import": "./dist/raw/wasm_sdk.js"
|
|
15
|
+
},
|
|
16
|
+
"./raw/*": "./dist/raw/*"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist/**",
|
|
20
|
+
"README.md"
|
|
21
|
+
],
|
|
22
|
+
"sideEffects": false,
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=18.18"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "./scripts/build.sh && node ./scripts/bundle.cjs",
|
|
28
|
+
"build:release": "./scripts/build-optimized.sh && node ./scripts/bundle.cjs",
|
|
29
|
+
"test": "yarn run test:unit && yarn run test:functional",
|
|
30
|
+
"test:unit": "mocha tests/unit/**/*.spec.mjs && karma start ./tests/karma/karma.conf.cjs --single-run",
|
|
31
|
+
"test:functional": "mocha tests/functional/**/*.spec.mjs && karma start ./tests/karma/karma.functional.conf.cjs --single-run",
|
|
32
|
+
"lint": "eslint tests/**/*.*js"
|
|
33
|
+
},
|
|
34
|
+
"ultra": {
|
|
35
|
+
"concurrent": [
|
|
36
|
+
"test"
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"assert": "^2.0.0",
|
|
41
|
+
"buffer": "^6.0.3",
|
|
42
|
+
"chai": "^4.3.10",
|
|
43
|
+
"chai-as-promised": "^7.1.1",
|
|
44
|
+
"dirty-chai": "^2.0.1",
|
|
45
|
+
"eslint": "^8.53.0",
|
|
46
|
+
"eslint-config-airbnb-base": "^15.0.0",
|
|
47
|
+
"eslint-plugin-import": "^2.29.0",
|
|
48
|
+
"eslint-plugin-jsdoc": "^46.9.0",
|
|
49
|
+
"events": "^3.3.0",
|
|
50
|
+
"karma": "^6.4.3",
|
|
51
|
+
"karma-chai": "^0.1.0",
|
|
52
|
+
"karma-chrome-launcher": "^3.1.0",
|
|
53
|
+
"karma-firefox-launcher": "^2.1.2",
|
|
54
|
+
"karma-mocha": "^2.0.1",
|
|
55
|
+
"karma-mocha-reporter": "^2.2.5",
|
|
56
|
+
"karma-webpack": "^5.0.0",
|
|
57
|
+
"mocha": "^11.1.0",
|
|
58
|
+
"path-browserify": "^1.0.1",
|
|
59
|
+
"process": "^0.11.10",
|
|
60
|
+
"string_decoder": "^1.3.0",
|
|
61
|
+
"url": "^0.11.3",
|
|
62
|
+
"util": "^0.12.4",
|
|
63
|
+
"webpack": "^5.94.0",
|
|
64
|
+
"webpack-cli": "^4.9.1"
|
|
65
|
+
}
|
|
66
|
+
}
|