mirror of
https://github.com/lbr77/SideImpactor.git
synced 2026-05-06 11:14:01 -04:00
29 lines
696 B
JSON
29 lines
696 B
JSON
{
|
|
"name": "@lbr77/openssl-wasm",
|
|
"version": "0.1.0",
|
|
"description": "OpenSSL WebAssembly package with stable src/dist/binary layout.",
|
|
"type": "module",
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"binary/**/*",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build:binary": "bash ./build.sh",
|
|
"build:dist": "bun ./build.mjs",
|
|
"build": "bun run build:binary && bun run build:dist",
|
|
"clean": "rm -rf dist binary",
|
|
"prepack": "bun run build"
|
|
}
|
|
}
|