The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/apps-engine/package.json

85 lines
1.7 KiB

{
"name": "@rocket.chat/apps-engine",
"version": "1.62.0",
"description": "The public API and type definitions for Rocket.Chat App development.",
"keywords": [
"rocket.chat",
"team chat",
"apps engine"
],
"homepage": "https://github.com/RocketChat/Rocket.Chat.Apps-engine#readme",
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat.Apps-engine/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/Rocket.Chat.git"
},
"license": "MIT",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"contributors": [
{
"name": "Bradley Hilton",
"email": "bradley.hilton@rocket.chat"
},
{
"name": "Rodrigo Nascimento",
"email": "rodrigo.nascimento@rocket.chat"
},
{
"name": "Douglas Gubert",
"email": "douglas.gubert@rocket.chat"
}
],
"files": [
"definition/**"
],
"scripts": {
"build": "run-s build:clean build:default",
"build:clean": "rimraf definition",
"build:default": "tsc -p tsconfig.json",
"dev": "yarn build:default --watch",
"gen-doc": "typedoc",
"lint": "yarn eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"src/*.ts",
"src/server/**/*.ts"
],
"reporter": [
"lcov",
"json",
"html"
]
},
"dependencies": {
"uuid": "~11.1.1"
},
"devDependencies": {
"@rocket.chat/ui-kit": "workspace:~",
"@types/node": "~22.16.5",
"eslint": "~9.39.3",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"typedoc": "~0.28.16",
"typescript": "~5.9.3"
},
"volta": {
"extends": "../../package.json"
},
"publishConfig": {
"access": "public"
},
"installConfig": {
"hoistingLimits": "workspaces"
}
}