UNPKG

wasm-check

Version:

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

47 lines (46 loc) 1.13 kB
{ "name": "wasm-check", "version": "2.1.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", "typings": "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" ], "bugs": "https://github.com/MaxGraey/wasm-check/issues", "repository": { "type": "git", "url": "git+https://github.com/MaxGraey/wasm-check.git" }, "engineStrict": true, "engines": { "node": ">= 8" }, "devDependencies": { "terser": "^5.3.1", "typescript": "^4.7.4" }, "scripts": { "build": "tsc && terser lib/index.js -c -m --toplevel --ecma 2018 -o dist/wasm-check.min.js --source-map \"content='./lib/index.js.map'\"", "watch": "tsc -w", "prepublishOnly": "yarn build" } }