Files
cannorin.net/packages/kripke/package.json
2025-09-23 16:18:53 +09:00

27 lines
533 B
JSON

{
"name": "@cannorin/kripke",
"version": "0.0.1",
"private": true,
"exports": {
".": "./index.ts",
"./syntax": "./syntax.ts",
"./semantics": "./semantics.ts",
"./parser": "./parser.ts",
"./sat": "./sat.ts"
},
"scripts": {
"build": "tsc",
"lint": "biome check",
"fix": "biome check --fix",
"test": "vitest"
},
"devDependencies": {
"typescript": "5.7.3",
"vitest": "3.2.4"
},
"dependencies": {
"@cannorin/utils": "workspace:*",
"typescript-parsec": "0.3.4"
}
}