-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.85 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@gramio/dialogs",
"version": "0.3.1",
"description": "Declarative, stateful dialogs and reusable widgets for GramIO — inspired by aiogram_dialog.",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"author": "gramio",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gramiojs/dialogs.git"
},
"homepage": "https://github.com/gramiojs/dialogs#readme",
"bugs": "https://github.com/gramiojs/dialogs/issues",
"keywords": [
"gramio",
"telegram",
"telegram-bot",
"dialog",
"dialogs",
"fsm",
"widgets",
"aiogram-dialog",
"menu",
"keyboard"
],
"scripts": {
"build": "pkgroll --clean-dist",
"prepublishOnly": "bun run check",
"check": "bun run lint && bun run typecheck && bun run typecheck:all && bun test && bun run build",
"test": "bun test",
"typecheck": "tsc -p tsconfig.build.json",
"typecheck:all": "tsc",
"lint": "biome check src tests examples",
"lint:fix": "biome check --write src tests examples"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"peerDependencies": {
"gramio": ">=0.11.0"
},
"dependencies": {
"@gramio/storage": "^2.0.0",
"etiket": "^0.11.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@gramio/scenes": "^0.7.1",
"@gramio/test": "^0.7.0",
"@gramio/views": "^0.2.0",
"@types/bun": "^1.3.14",
"gramio": "^0.11.0",
"pkgroll": "^2.5.1",
"typescript": "^5.7.0"
}
}