nanotypes
Version:
Minimal, runtime-safe type checks for modern Vanilla JS
40 lines • 971 B
JSON
{
"name": "nanotypes",
"version": "0.0.7",
"description": "Minimal, runtime-safe type checks for modern Vanilla JS",
"type": "module",
"files": [
"dist/",
"README.md",
"LICENSE.MD"
],
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "node esbuild.config.js",
"test": "node ./test/smokeTest.js"
},
"keywords": [
"type-checking",
"vanilla-js",
"runtime-types",
"tree-shakable",
"lightweight",
"jsdoc-friendly"
],
"repository": {
"type": "git",
"url": "https://github.com/iWhatty/NanoTypes.git"
},
"license": "DR.WATT v3.0",
"sideEffects": false,
"devDependencies": {
"esbuild": "^0.25.4"
}
}