diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 24 |
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" } |
