as-option
Version:
Zero cost Option type for AssemblyScript
40 lines (39 loc) • 966 B
JSON
{
"name": "as-option",
"version": "0.0.2",
"description": "Zero cost Option type for AssemblyScript",
"keywords": [
"assemblyscript",
"option",
"optional",
"nullable",
"abstraction"
],
"ascMain": "assembly/index.ts",
"main": "assembly/index.ts",
"scripts": {
"build:debug": "asc assembly/index.ts --target debug",
"build:release": "asc assembly/index.ts --target release",
"build": "npm run build:debug && npm run build:release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxGraey/as-option.git"
},
"author": "MaxGraey @ 2022",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxGraey/as-option/issues"
},
"homepage": "https://github.com/MaxGraey/as-option#readme",
"devDependencies": {
"assemblyscript": "^0.20.12"
},
"type": "module",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
}
}