try
Version:
A 373-byte Spec-Compliant Runtime-Only Implementation of the ECMAScript Try Operator Proposal Result class
56 lines • 1.41 kB
JSON
{
"name": "try",
"version": "1.0.0-beta.10",
"description": "A 373-byte Spec-Compliant Runtime-Only Implementation of the ECMAScript Try Operator Proposal Result class",
"keywords": [
"try",
"operator",
"result",
"safe",
"error",
"proposal"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arthurfiorette/try.git"
},
"funding": "https://github.com/arthurfiorette/try?sponsor=1",
"license": "MIT",
"author": {
"name": "Arthur Fiorette",
"url": "https://arthur.place"
},
"contributors": [
{
"name": "Szymon Wygnański",
"url": "https://finalclass.net"
}
],
"sideEffects": false,
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@arthurfiorette/biomejs-config": "^2.0.0",
"@biomejs/biome": "^2.0.4",
"@types/node": "^24.0.3",
"c8": "^10.1.3",
"husky": "^9.1.7",
"tsd": "^0.32.0",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public",
"provenance": true,
"tag": "latest"
},
"scripts": {
"format": "biome format --write .",
"lint": "biome check .",
"lint-ci": "biome ci .",
"lint-fix": "biome check --write --unsafe .",
"test": "c8 --reporter lcov node --test test/**/*.js",
"test-types": "tsd --show-diff -f test",
"test-watch": "node --watch --test test/**/*.js"
}
}