forked from lockin-bot/react-telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 954 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "react-telegram-monorepo",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run build:core && bun run build:adapter",
"build:core": "cd packages/core && bun run build",
"build:adapter": "cd packages/mtcute-adapter && bun run build",
"test": "bun test",
"test:watch": "bun test --watch",
"type-check": "tsc --noEmit",
"lint": "echo 'Add ESLint when configured'",
"format": "prettier --write \"packages/*/src/**/*.{ts,tsx}\"",
"example": "cd packages/examples && bun run start",
"changeset": "changeset",
"version": "changeset version && bun install --no-frozen-lockfile",
"release": "bun run build && changeset publish",
"clean": "rm -rf packages/*/dist packages/*/tsconfig.tsbuildinfo"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/bun": "latest",
"prettier": "^3.2.5",
"typescript": "^5"
}
}