1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
"name": "@aberrantflux/kai-script",
"description": "A type safe framework for TypeScript",
"version": "0.2.3",
"repository": {
"type": "git",
"url": "git+https://git.aberrantflux.xyz/kai-script.git/"
},
"scripts": {
"build": "tsc"
},
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist",
"src",
"examples",
"package.json",
"pnpm-lock.yaml",
"tsconfig.json"
],
"devDependencies": {
"typescript": "^5.9.3",
"tsx": "^4.19.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.20.0"
}
|