Files
2026-07-13 13:34:48 +08:00

100 lines
2.7 KiB
JSON

{
"name": "llmz",
"type": "module",
"description": "LLMz - An LLM-native Typescript VM built on top of Zui",
"version": "0.1.1",
"types": "./dist/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"url": "https://github.com/botpress/botpress"
},
"scripts": {
"generate": "pnpm build:markdown",
"build": "tsup && pnpm tsc --emitDeclarationOnly --noCheck",
"check:type": "tsc --noEmit",
"watch": "tsup --watch",
"test": "vitest --run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:e2e:update": "vitest -u run --config vitest.e2e.config.ts",
"test:e2e:watch": "vitest --config vitest.e2e.config.ts",
"build:markdown": "node --loader ts-node/esm ./scripts/compile-markdown.mts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@babel/standalone": "^7.26.4",
"@babel/traverse": "^7.26.4",
"@babel/types": "^7.26.3",
"@jitl/quickjs-singlefile-browser-release-sync": "^0.31.0",
"bytes": "^3.1.2",
"exponential-backoff": "^3.1.1",
"handlebars": "^4.7.8",
"lodash-es": "^4.17.21",
"lru-cache": "~11.0.2",
"ms": "^2.1.3",
"prettier": "^3.4.2",
"quickjs-emscripten-core": "^0.31.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@botpress/cli": "workspace:*",
"@microsoft/api-extractor": "^7.49.0",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__standalone": "^7.1.9",
"@types/babel__traverse": "^7.20.6",
"@types/bytes": "^3.1.5",
"@types/json-schema": "^7.0.12",
"@types/lodash-es": "^4.17.12",
"@types/ms": "^0.7.34",
"@types/node": "^22.16.4",
"chalk": "^4.1.2",
"diff": "^8.0.1",
"dotenv": "^16.4.4",
"esbuild": "^0.25.10",
"glob": "^9.3.4",
"source-map-js": "1.2.1",
"tsup": "^8.0.2",
"tsx": "^4.19.2"
},
"peerDependencies": {
"@botpress/client": "1.47.0",
"@botpress/cognitive": "0.6.1",
"@bpinternal/thicktoken": "^2.0.0",
"@bpinternal/zui": "^2.3.0"
},
"dependenciesMeta": {
"@bpinternal/zui": {
"injected": true
}
},
"peerDependenciesMeta": {
"@botpress/client": {
"optional": true
},
"@botpress/cognitive": {
"optional": false
},
"@bpinternal/thicktoken": {
"optional": false
},
"@bpinternal/zui": {
"optional": false
}
},
"packageManager": "pnpm@10.29.3"
}