-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.42 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
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
{
"name": "@gramio/i18n",
"version": "1.0.4",
"description": "i18n plugin for GramIO with type-safety",
"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"
}
},
"./fluent": {
"import": {
"types": "./dist/fluent/index.d.ts",
"default": "./dist/fluent/index.js"
},
"require": {
"types": "./dist/fluent/index.d.cts",
"default": "./dist/fluent/index.cjs"
}
}
},
"type": "module",
"homepage": "https://github.com/gramiojs/i18n",
"readme": "https://gramio.dev/plugins/official/i18n.html",
"scripts": {
"prepublishOnly": "bunx pkgroll",
"generate": "bun scripts/generate.ts"
},
"license": "MIT",
"keywords": [
"gramio",
"gramio-plugin",
"i18n",
"internationalization",
"fluent",
"i10n",
"locales",
"languages",
"localization",
"translation",
"telegram-bot-api",
"telegram-bot",
"i18n-in-ts"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.1.12",
"gramio": "^0.1.1",
"pkgroll": "2.5.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"peerDependencies": {
"gramio": ">=0.0.39 <1.0.0",
"@fluent/bundle": "^0.18.0"
},
"files": ["dist"],
"peerDependenciesMeta": {
"@fluent/bundle": {
"optional": true
}
}
}