-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 969 Bytes
/
package.json
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
{
"name": "@polkadot-api/wasm-executor",
"version": "0.1.2",
"author": "Carlo Sala (https://github.com/carlosala)",
"repository": {
"type": "git",
"url": "git+https://github.com/polkadot-api/wasm-executor.git"
},
"license": "MIT",
"sideEffects": false,
"files": [
"dist"
],
"main": "index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"module": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rm -rf pkg dist",
"wasm": "pnpm run clean && wasm-pack build --target nodejs --out-dir pkg",
"build": "pnpm run wasm && bash scripts/build.sh"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}