summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorKai Stevenson <kai@kaistevenson.com>2025-11-04 00:18:30 -0800
committerKai Stevenson <kai@kaistevenson.com>2025-11-04 00:28:40 -0800
commit47ea3a63474e40c12164c1ebf4eec3121c3b217c (patch)
tree26f06c243fc355898abf1218b5e978012f75b77c /package.json
parent1b364d51b8d18936bae913e999316ae171c39c74 (diff)
setup for publishing
Diffstat (limited to 'package.json')
-rw-r--r--package.json24
1 files changed, 23 insertions, 1 deletions
diff --git a/package.json b/package.json
index c55e97a..a41fcff 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,27 @@
{
+ "name": "@aberrantflux/kai-script",
+ "description": "A type safe framework for TypeScript",
+ "version": "0.1.0",
+ "scripts": {
+ "build": "tsc"
+ },
+ "exports": {
+ "types": "./dist/index.d.ts",
+ "default": "./dist/index.js"
+ },
+ "files": [
+ "dist",
+ "src",
+ "package.json",
+ "pnpm-lock.yaml",
+ "tsconfig.json"
+ ],
"devDependencies": {
+ "typescript": "^5.9.3",
"tsx": "^4.19.2"
- }
+ },
+ "publishConfig": {
+ "access": "public"
+ },
+ "packageManager": "pnpm@10.20.0"
}