27 lines
533 B
JSON
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"
|
|
}
|
|
}
|