mirror of
https://github.com/RocketChat/Rocket.Chat.git
synced 2025-12-28 06:47:25 +00:00
30 lines
819 B
JSON
30 lines
819 B
JSON
{
|
|
"name": "@rocket.chat/random",
|
|
"version": "1.2.2",
|
|
"private": true,
|
|
"description": "Random number generator and utilities; Fork of Meteor's Random package",
|
|
"main": "./dist/main.server.js",
|
|
"browser": "./dist/main.client.js",
|
|
"types": "./dist/main.server.d.ts",
|
|
"scripts": {
|
|
"build": "rm -rf dist && tsc -p tsconfig.build.json",
|
|
"dev": "tsc -p tsconfig.build.json --watch --preserveWatchOutput",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "jest",
|
|
"testunit": "jest",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@rocket.chat/eslint-config": "workspace:^",
|
|
"@rocket.chat/jest-presets": "workspace:~",
|
|
"@rocket.chat/tsconfig": "workspace:*",
|
|
"eslint": "~8.45.0",
|
|
"jest": "~30.2.0",
|
|
"typescript": "~5.9.3"
|
|
},
|
|
"volta": {
|
|
"extends": "../../package.json"
|
|
}
|
|
}
|