mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 06:47:25 +00:00
35 lines
845 B
JSON
35 lines
845 B
JSON
{
|
|
"name": "@rocket.chat/tools",
|
|
"version": "0.2.4-rc.0",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"typings": "./dist/index.d.ts",
|
|
"files": [
|
|
"/dist"
|
|
],
|
|
"scripts": {
|
|
"build": "rm -rf dist && tsc -p tsconfig.build.json",
|
|
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput",
|
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
|
|
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
|
|
"test": "jest",
|
|
"test:cov": "jest --coverage",
|
|
"testunit": "jest",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"moment-timezone": "^0.5.48"
|
|
},
|
|
"devDependencies": {
|
|
"@rocket.chat/jest-presets": "workspace:~",
|
|
"@rocket.chat/tsconfig": "workspace:*",
|
|
"@types/jest": "~30.0.0",
|
|
"eslint": "~8.45.0",
|
|
"jest": "~30.2.0",
|
|
"typescript": "~5.9.3"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
}
|
|
}
|