jan/core/package.json
Louis 1143bd3846
refactor: jan extensions (#799)
* refactor: rename plugin to extension
2023-12-01 11:30:29 +07:00

36 lines
641 B
JSON

{
"name": "@janhq/core",
"version": "0.1.10",
"description": "Jan app core lib",
"keywords": [
"jan",
"core"
],
"homepage": "https://jan.ai",
"license": "AGPL-3.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"exports": {
".": "./lib/index.js"
},
"files": [
"lib",
"README.md",
"LICENSE.md",
"package.json",
"!.DS_Store"
],
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1",
"build": "tsc"
},
"devDependencies": {
"@types/node": "^12.0.2",
"typescript": "^5.2.2"
}
}