summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2025-11-08 17:30:19 -0800
committerKai Stevenson <kai@kaistevenson.com>2025-11-08 17:32:01 -0800
commit8442ed67628e5d51e02b876d0f27479f9215bf0a (patch)
treee63c4afce5c29bb2e1edbf5899291508e211d1fe /package.json
parentb32604eef0cec59798cdfea53b82766819429717 (diff)
add more tests, fix issues, add support for booleans
Diffstat (limited to 'package.json')
-rw-r--r--package.json7
1 files changed, 4 insertions, 3 deletions
diff --git a/package.json b/package.json
index da58a1a..96d70b6 100644
--- a/package.json
+++ b/package.json
@@ -1,15 +1,16 @@
{
"name": "@aberrantflux/kai-script",
"description": "A type safe framework for TypeScript",
- "version": "0.2.3",
+ "version": "0.2.4",
"repository": {
"type": "git",
"url": "git+https://git.aberrantflux.xyz/kai-script.git/"
},
"scripts": {
- "build": "tsc",
+ "build": "tsc --declaration",
"generate-tests": "rm -f tests/type-consistency/generated/*.test.ts && tsx tests/type-consistency/generateAll.ts",
- "test": "pnpm run generate-tests && vitest run --reporter verbose"
+ "test": "pnpm run generate-tests && vitest run --reporter verbose && tsc --noEmit --project tests/type-consistency/tsconfig.json",
+ "safe-publish": "rm -rf dist && pnpm build && pnpm test && npm publish"
},
"exports": {
"types": "./dist/index.d.ts",