-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.73 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.73 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
{
"name": "@grom.js/effect-tg",
"type": "module",
"version": "0.16.2",
"packageManager": "pnpm@10.25.0",
"description": "Effectful library for crafting Telegram bots.",
"author": {
"name": "Vladislav Deryabkin",
"url": "https://evermake.me"
},
"license": "MIT",
"homepage": "https://github.com/grom-dev/effect-tg",
"repository": {
"type": "git",
"url": "https://github.com/grom-dev/effect-tg.git"
},
"keywords": [
"effect",
"telegram"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"./dist/",
"./src/"
],
"engines": {
"node": ">=22.x <25"
},
"scripts": {
"prepare": "effect-language-service patch",
"gen:bot-api": "node ./scripts/gen-bot-api.ts",
"typecheck": "tsc --build --noEmit tsconfig.json",
"build": "rm -rf ./dist/ && tsc --project ./tsconfig.lib.json",
"deps": "taze --write --interactive --include-locked minor",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run --typecheck",
"knip": "knip --config ./knip.config.ts",
"release": "bumpp"
},
"peerDependencies": {
"@effect/platform": "^0.96.0",
"@grom.js/tgx": "^1.0.0",
"effect": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "7.7.3",
"@effect/language-service": "0.84.3",
"@effect/platform": "0.96.0",
"@grom.js/bot-api-spec": "0.9.0",
"@grom.js/tgx": "1.4.1",
"@types/node": "22.19.17",
"@vitest/coverage-v8": "4.1.2",
"bumpp": "11.0.1",
"effect": "3.21.0",
"eslint": "9.39.4",
"eslint-plugin-format": "2.0.1",
"knip": "6.3.0",
"taze": "19.11.0",
"ts-morph": "27.0.2",
"typescript": "5.9.3",
"vitest": "4.1.2"
}
}