UNPKG

fregejs

Version:

A propositional logic library written in Typescript

50 lines 1.37 kB
{ "name": "fregejs", "version": "0.4.0", "main": "dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "devDependencies": { "@changesets/cli": "^2.26.2", "@types/node": "^20.4.1", "cz-conventional-changelog": "^3.3.0", "prettier": "^3.0.0", "tsup": "^7.1.0", "tsx": "^3.12.7", "typescript": "^5.1.6" }, "keywords": [ "logic", "propositional-logic", "proof-assistant", "logic-client" ], "author": { "name": "Luca Poe", "url": "https://github.com/iamthepoe" }, "homepage": "https://github.com/etec-sa", "repository": { "type": "git", "url": "https://github.com/etec-sa/frege.git" }, "bugs": { "url": "https://github.com/Etec-SA/frege/issues", "email": "etecsa.contato@gmail.com" }, "license": "MIT", "description": "A propositional logic library written in Typescript", "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "scripts": { "test": "npx tsx --test src/**/__tests__/*.test.ts", "style:check": "prettier --check src/**/*.ts src/**/__tests__/*.test.ts", "style:fix": "prettier --write src/**/*.ts src/**/__tests__/*.test.ts", "build": "npx tsup src/index.ts --format cjs,esm --dts ", "lint": "tsc", "release": "pnpm run build && npx changeset publish" } }