-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.27 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@telegram/auth",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/manzoorwanijk/telegram-auth.git"
},
"bugs": {
"url": "https://github.com/manzoorwanijk/telegram-auth/issues"
},
"author": "Manzoor Wani <[email protected]>",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"build:p": "turbo run build --filter=./packages/*",
"build:docs": "turbo run build:docs",
"clean": "turbo run clean",
"deploy": "turbo run deploy",
"dev": "turbo run dev --parallel",
"kick-off": "pnpm clean && pnpm build:p",
"lint": "eslint \"{packages,examples,internal}/**/*.{ts,tsx,js,jsx,json}\"",
"lint:fix": "pnpm run lint --fix",
"release": "changeset publish",
"release:dev": "changeset publish --tag dev",
"test": "turbo run test",
"typecheck": "tsc --noEmit",
"version-packages": "changeset version && pnpm -r run version",
"version:dev": "changeset version --snapshot dev"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@telegram-auth/eslint-config": "workspace:*",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"turbo": "^1.11.3",
"typescript": "^5.3.3"
},
"workspaces": [
"examples/*",
"internal/*",
"packages/*"
]
}