-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.9 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.9 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
79
80
81
{
"name": "chat-adapter-line",
"version": "0.1.0",
"description": "LINE Messaging API adapter for Chat SDK",
"keywords": [
"adapter",
"bot",
"chat",
"chat-adapter",
"chat-sdk",
"line",
"messaging"
],
"homepage": "https://github.com/PunGrumpy/chat-adapter-line",
"bugs": {
"url": "https://github.com/PunGrumpy/chat-adapter-line/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PunGrumpy/chat-adapter-line.git"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vp pack --watch",
"build": "vp pack",
"test": "vp test",
"benchmark": "vp test bench",
"benchmark:json": "vp test bench --outputJson bench/results.json",
"lint": "ultracite check",
"format": "ultracite fix",
"typecheck": "tsc --noEmit",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "vp pack && changeset publish"
},
"dependencies": {
"@chat-adapter/shared": "^4.23.0",
"@line/bot-sdk": "^11.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^25.5.2",
"chat": "^4.23.0",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"typescript": "~5.9.3",
"ultracite": "7.4.3",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vite-plus": "latest"
},
"peerDependencies": {
"chat": ">=4.0.0"
},
"peerDependenciesMeta": {
"chat": {
"optional": false
}
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "bun@1.3.11"
}