--- updated-dependencies: - dependency-name: rimraf dependency-version: 6.0.1 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1013 B
JSON
42 lines
1013 B
JSON
{
|
|
"name": "@janhq/conversational-extension",
|
|
"productName": "Conversational",
|
|
"version": "1.0.0",
|
|
"description": "Enables conversations and state persistence via your file system.",
|
|
"main": "dist/index.js",
|
|
"author": "Jan <service@jan.ai>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"build": "rolldown -c rolldown.config.mjs",
|
|
"build:publish": "rimraf *.tgz --glob || true && yarn build && npm pack && cpx *.tgz ../../pre-install"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./main": "./dist/module.js"
|
|
},
|
|
"devDependencies": {
|
|
"cpx": "^1.5.0",
|
|
"rimraf": "^6.0.1",
|
|
"rolldown": "1.0.0-beta.1",
|
|
"ts-loader": "^9.5.0",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"dependencies": {
|
|
"@janhq/core": "../../core/package.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"bundleDependencies": [],
|
|
"installConfig": {
|
|
"hoistingLimits": "workspaces"
|
|
},
|
|
"packageManager": "yarn@4.5.3"
|
|
}
|