UNPKG

wasm-check

Version:

TypeScript / JavaScript library for detect WebAssembly features in node.js & browser

54 lines (53 loc) 1.3 kB
{ "name": "wasm-check", "version": "3.0.2", "author": "MaxGraey @ 2021", "license": "MIT", "description": "TypeScript / JavaScript library for detect WebAssembly features in node.js & browser", "keywords": [ "wasm", "webassembly", "feature", "validate", "check", "support", "test", "detect" ], "sideEffects": false, "main": "lib/index.js", "types": "lib/index.d.ts", "jsdelivr": "dist/wasm-check.min.js", "browser": "dist/wasm-check.min.js", "unpkg": "dist/wasm-check.min.js", "files": [ "lib/**/*", "dist/**/*", "package.json" ], "exports": { ".": { "types": "./lib/index.d.ts", "default": "./lib/index.js" } }, "bugs": "https://github.com/MaxGraey/wasm-check/issues", "homepage": "https://github.com/MaxGraey/wasm-check#readme", "repository": { "type": "git", "url": "git+https://github.com/MaxGraey/wasm-check.git" }, "engineStrict": true, "engines": { "node": ">= 20" }, "devDependencies": { "terser": "^5.46.1", "typescript": "^6.0.3" }, "scripts": { "build": "tsc && terser lib/index.js -c -m --toplevel --ecma 2020 -o dist/wasm-check.min.js --source-map \"content='./lib/index.js.map'\"", "watch": "tsc -w", "prepublishOnly": "yarn build" } }