-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "wx-clawbot",
"version": "0.0.18",
"description": "",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"type": "module",
"homepage": "https://github.com/ikrong/wx-clawbot",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts",
"deploy": "./scripts/deploy.sh"
},
"files": [
"dist",
"package.json",
"README.md"
],
"keywords": [
"wechat",
"robot"
],
"author": "ikrong",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.5.0",
"@types/qrcode-terminal": "^0.12.2",
"qrcode-terminal": "^0.12.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"conf": "^15.1.0",
"silk-wasm": "^3.7.1"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120
}
}