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/package.json

61 lines
1.7 KiB

{
"name": "@rocket.chat/apps",
"version": "0.7.0",
"private": true,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/",
"deno-runtime/",
".deno-cache/"
],
"scripts": {
"build": "run-s build:clean build:default build:deno-cache",
"build:clean": "rimraf dist",
"build:default": "tsc -p tsconfig.json",
"build:deno-cache": "node scripts/deno-cache.js",
"dev": "tsc -p tsconfig.json --watch --preserveWatchOutput",
"lint": "eslint .",
"test:deno": "deno task --config=deno-runtime/deno.jsonc test",
"test:node": "NODE_ENV=test node --require ts-node/register/transpile-only --test-reporter spec --test \"tests/**/*.test.ts\"",
"testunit": "yarn test:node && yarn test:deno",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@msgpack/msgpack": "3.0.0-beta2",
"@rocket.chat/apps-engine": "workspace:^",
"@rocket.chat/core-typings": "workspace:^",
"@rocket.chat/model-typings": "workspace:^",
"adm-zip": "^0.5.16",
"debug": "^4.3.7",
"esbuild": "~0.28.1",
"jose": "^4.15.9",
"jsonrpc-lite": "^2.2.0",
"lodash.clonedeep": "^4.5.0",
"semver": "^7.6.3",
"stack-trace": "0.0.10",
"uuid": "~11.1.1"
},
"devDependencies": {
"@rocket.chat/tsconfig": "workspace:*",
"@seald-io/nedb": "^4.1.2",
"@types/adm-zip": "^0.5.7",
"@types/debug": "^4.1.12",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "~22.16.5",
"@types/semver": "^7.5.8",
"@types/stack-trace": "0.0.33",
"@types/uuid": "~10.0.0",
"eslint": "~9.39.4",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-node": "^6.2.0",
"typescript": "~5.9.3"
},
"volta": {
"extends": "../../package.json"
},
"installConfig": {
"hoistingLimits": "workspaces"
}
}