forked from Echo-Mirror-Butler/echomirror-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@echomirror/wasm",
"version": "0.1.0",
"description": "EchoMirror SDK compiled to WebAssembly — crypto, XDR and sync helpers for browser and Node.js",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
}
},
"imports": {
"#wasm-binding": {
"types": "./src/wasm-binding.d.ts",
"node": "./wasm-node/echomirror_wasm.cjs",
"browser": "./wasm-web/echomirror_wasm.js",
"default": "./wasm-web/echomirror_wasm.js"
}
},
"files": [
"dist",
"wasm-web",
"wasm-node",
"src/wasm-binding.d.ts"
],
"scripts": {
"build:wasm": "node scripts/build.mjs",
"build": "tsc",
"size": "node scripts/report-size.mjs",
"test": "vitest run --config vitest.config.ts --passWithNoTests",
"test:browser": "vitest run --config vitest.browser.config.ts --passWithNoTests",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"clean": "rm -rf dist wasm-web wasm-node"
},
"keywords": ["echomirror", "wasm", "webassembly", "stellar", "mood"],
"license": "MIT",
"devDependencies": {
"typescript": "*",
"vitest": "*",
"@vitest/browser": "^1.6.0",
"playwright": "^1.44.0",
"wasm-pack": "^0.15.0"
},
"engines": {
"node": ">=18.0.0"
}
}