@sylphx/synth-typecheck
Version:
Type checker for Synth AST - cross-language type inference and validation
43 lines (42 loc) • 764 B
JSON
{
"name": "@sylphx/synth-typecheck",
"version": "0.2.3",
"description": "Type checker for Synth AST - cross-language type inference and validation",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit",
"build": "bunup",
"prepack": "bun run build"
},
"keywords": [
"typecheck",
"type-checker",
"type-inference",
"ast",
"synth",
"types"
],
"author": "Synth",
"license": "MIT",
"dependencies": {
"@sylphx/synth": "^0.3.2"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.6.0"
}
}